Commit bedb73ff authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Default to 4096 buckets and 256 mutexes


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@757 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 543feafe
......@@ -34,8 +34,8 @@ struct hcl_entry {
TAILQ_HEAD(hcl_head, hcl_entry);
static struct hcl_head *hcl_head;
static unsigned hcl_nhash = 256;
static unsigned hcl_nmtx = 16;
static unsigned hcl_nhash = 4096;
static unsigned hcl_nmtx = 256;
static pthread_mutex_t *hcl_mutex;
/*--------------------------------------------------------------------*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment