Merge pull request #4399 from inflammable/patch-1

Correct Memcached config in example
This commit is contained in:
Daniel Hensby 2015-07-15 14:21:21 +01:00
commit 2549fa8a93

View File

@ -117,6 +117,7 @@ To use this backend, you need a memcached daemon and the memcache PECL extension
'primary_memcached',
'Memcached',
array(
'servers' => array(
'host' => 'localhost',
'port' => 11211,
'persistent' => true,
@ -126,6 +127,7 @@ To use this backend, you need a memcached daemon and the memcache PECL extension
'status' => true,
'failure_callback' => ''
)
)
);
SS_Cache::pick_backend('primary_memcached', 'any', 10);