Skip to content

Commit e3ffe29

Browse files
committed
Update documentation with persistent, key_prefix and auths keys configurations
1 parent e69f79d commit e3ffe29

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.markdown

+4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ $redisCache = Zend_Cache::factory(
1717
'host' => '127.0.0.1',
1818
'port' => 6379,
1919
'dbindex' => 1,
20+
// 'persistent' => false, // not a persistent connection
2021
),
2122
),
23+
// 'key_prefix' => 'my_app', // if desire to add a prefix to all cache keys
24+
// 'auth' => true, // enable authentication
25+
// 'password' => 'mypwd000000', // password to authenticate on redis server
2226
))
2327
);
2428
</pre>

0 commit comments

Comments
 (0)