From: Charles Melbye Date: Thu, 23 Apr 2009 02:49:44 +0000 (+0000) Subject: Fixing port error in Memcached docs (Reported by Sean_Colombo in IRC.) X-Git-Tag: 1.31.0-rc.0~42070 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=commitdiff_plain;h=5ac13d1a5b5ea59c6817c06ac74fcb8f0c4c8a0c;p=lhc%2Fweb%2Fwiklou.git Fixing port error in Memcached docs (Reported by Sean_Colombo in IRC.) --- diff --git a/docs/memcached.txt b/docs/memcached.txt index 2a9048726e..632511f32a 100644 --- a/docs/memcached.txt +++ b/docs/memcached.txt @@ -56,7 +56,7 @@ To start the daemon manually, use something like: memcached -d -l 127.0.0.1 -p 11211 -m 64 (to run in daemon mode, accessible only via loopback interface, -on port 11000, using up to 64MB of memory) +on port 11211, using up to 64MB of memory) In your LocalSettings.php file, set: @@ -71,8 +71,8 @@ it has twice the memory of the others and you want to spread usage evenly), make its entry a subarray: $wgMemCachedServers = array( - "127.0.0.1:11000", # one gig on this box - array("192.168.0.1:11000", 2 ) # two gigs on the other box + "127.0.0.1:11211", # one gig on this box + array("192.168.0.1:11211", 2 ) # two gigs on the other box ); == PHP client for memcached ==