Hi,

is it related to PR57023 ?

CJ

Le 05/10/2014 19:05, rj...@apache.org a écrit :
Author: rjung
Date: Sun Oct  5 17:05:21 2014
New Revision: 1629508

URL: http://svn.apache.org/r1629508
Log:
mod_cache_socache: Change average object size
hint from 32 bytes to 2048 bytes.

Modified:
     httpd/httpd/trunk/CHANGES
     httpd/httpd/trunk/modules/cache/mod_cache_socache.c

Modified: httpd/httpd/trunk/CHANGES
URL: 
http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1629508&r1=1629507&r2=1629508&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Sun Oct  5 17:05:21 2014
@@ -1,6 +1,9 @@
                                                           -*- coding: utf-8 -*-
  Changes with Apache 2.5.0
+ *) mod_cache_socache: Change average object size hint from 32 bytes to
+     2048 bytes.  [Rainer Jung]
+
    *) mod_cache_socache: Add cache status to server-status.  [Rainer Jung]
*) mod_ssl: Move OCSP stapling information from a per-certificate store to

Modified: httpd/httpd/trunk/modules/cache/mod_cache_socache.c
URL: 
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache_socache.c?rev=1629508&r1=1629507&r2=1629508&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache_socache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache_socache.c Sun Oct  5 17:05:21 2014
@@ -1450,7 +1450,7 @@ static int socache_post_config(apr_pool_
      apr_status_t rv;
      const char *errmsg;
      static struct ap_socache_hints socache_hints =
-    { 64, 32, 60000000 };
+    { 64, 2048, 60000000 };
for (s = base_server; s; s = s->next) {
          cache_socache_conf *conf =




Reply via email to