From: River Tarnell Date: Thu, 7 Jul 2005 03:01:35 +0000 (+0000) Subject: try disabling persistant connections X-Git-Tag: 1.5.0beta3~4 X-Git-Url: http://git.heureux-cyclage.org/?a=commitdiff_plain;h=f6a6230890d1a50b56e6f2e7da2b74b7b784c604;p=lhc%2Fweb%2Fwiklou.git try disabling persistant connections --- diff --git a/includes/ObjectCache.php b/includes/ObjectCache.php index a1db1c23b2..5acf923b32 100644 --- a/includes/ObjectCache.php +++ b/includes/ObjectCache.php @@ -65,7 +65,7 @@ function &wfGetCache( $inputType ) { } $wgCaches[CACHE_DB] = new MemCachedClientforWiki( - array('persistant' => true, 'compress_threshold' => 1500 ) ); + array('persistant' => false, 'compress_threshold' => 1500 ) ); $cache =& $wgCaches[CACHE_DB]; $cache->set_servers( $wgMemCachedServers ); $cache->set_debug( $wgMemCachedDebug );