From e1ffbc7965ea67475c96047ff0705244cbf4ad0c Mon Sep 17 00:00:00 2001 From: Kamisama Date: Thu, 19 Sep 2013 19:15:24 -0400 Subject: [PATCH] Update README --- readme.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/readme.md b/readme.md index c330ee3..90e52a9 100644 --- a/readme.md +++ b/readme.md @@ -121,8 +121,7 @@ The memcached cache engine can take the following options: # Memcached options 'compress' => false, - 'persistent' => true, - 'persistent_id' => 'mc', + 'persistent' => false, 'login' => null, 'password => null, 'serialize' => 'php' @@ -135,13 +134,8 @@ Compress the cached data. Unlike memcache, memcache**d** can increment/decrement ### persistent -*Default: `true`* -Use a persistent connection to the memcached server - -### persistent_id - -*Default: `mc`* -If you're using more than one persistent connection, you should assign them a different `persistent_id` each. +*Default: `false`* +Use a persistent connection to the memcached server. To enable, set `persistent` to an unique string, to identify the connection. All configurations using the same persistent value will share a single underlying connection. ### login and password