r4422 - trunk/varnish-cache

tfheen at projects.linpro.no tfheen at projects.linpro.no
Wed Jan 6 10:42:34 CET 2010


Author: tfheen
Date: 2010-01-06 10:42:34 +0100 (Wed, 06 Jan 2010)
New Revision: 4422

Modified:
   trunk/varnish-cache/configure.ac
Log:
Increase default max number of headers

People have been running into the maximum number of headers limitation
more and more lately, so increase this a little bit.  It is a
per-thread overhead, so it should not make any real difference when it
comes to memory consumption.

Modified: trunk/varnish-cache/configure.ac
===================================================================
--- trunk/varnish-cache/configure.ac	2010-01-04 21:36:00 UTC (rev 4421)
+++ trunk/varnish-cache/configure.ac	2010-01-06 09:42:34 UTC (rev 4422)
@@ -417,9 +417,9 @@
 # Define HTTP_HDR_MAX_VAL
 AC_ARG_WITH(max-header-fields,
             AS_HELP_STRING([--with-max-header-fields=NUM],
-                           [How many header fields to support (default=32)]),
+                           [How many header fields to support (default=64)]),
             [],
-            [with_max_header_fields=32])
+            [with_max_header_fields=64])
 
 AC_DEFINE_UNQUOTED(HTTP_HDR_MAX_VAL, $with_max_header_fields, [Define maximum number of header fields supported by varnish ])
 



More information about the varnish-commit mailing list