From f6a6230890d1a50b56e6f2e7da2b74b7b784c604 Mon Sep 17 00:00:00 2001 From: River Tarnell Date: Thu, 7 Jul 2005 03:01:35 +0000 Subject: [PATCH] try disabling persistant connections --- includes/ObjectCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1