From: Rainer Jung Date: Sun, 5 Oct 2014 17:05:21 +0000 (+0000) Subject: mod_cache_socache: Change average object size X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfd77569c372c1fa3a4ed078549e5e7a271218c1;p=thirdparty%2Fapache%2Fhttpd.git mod_cache_socache: Change average object size hint from 32 bytes to 2048 bytes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1629508 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index fe2d60e6c65..f846b80ba3b 100644 --- a/CHANGES +++ b/CHANGES @@ -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 diff --git a/modules/cache/mod_cache_socache.c b/modules/cache/mod_cache_socache.c index 804df90fff1..a6d80b55eb9 100644 --- a/modules/cache/mod_cache_socache.c +++ b/modules/cache/mod_cache_socache.c @@ -1450,7 +1450,7 @@ static int socache_post_config(apr_pool_t *pconf, apr_pool_t *plog, 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 =