Index: trunk/phase3/docs/memcached.txt |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | memcached -d -l 127.0.0.1 -p 11211 -m 64 |
58 | 58 | |
59 | 59 | (to run in daemon mode, accessible only via loopback interface, |
60 | | -on port 11000, using up to 64MB of memory) |
| 60 | +on port 11211, using up to 64MB of memory) |
61 | 61 | |
62 | 62 | In your LocalSettings.php file, set: |
63 | 63 | |
— | — | @@ -71,8 +71,8 @@ |
72 | 72 | usage evenly), make its entry a subarray: |
73 | 73 | |
74 | 74 | $wgMemCachedServers = array( |
75 | | - "127.0.0.1:11000", # one gig on this box |
76 | | - array("192.168.0.1:11000", 2 ) # two gigs on the other box |
| 75 | + "127.0.0.1:11211", # one gig on this box |
| 76 | + array("192.168.0.1:11211", 2 ) # two gigs on the other box |
77 | 77 | ); |
78 | 78 | |
79 | 79 | == PHP client for memcached == |