]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Memcached/README
Merge branch 'master' into nightly
[quix0rs-gnu-social.git] / plugins / Memcached / README
1 The Memcached plugin implements cache interface for memcached.
2
3 See: http://memcached.org/
4
5 Installation
6 ============
7 add "addPlugin('Memcached');"
8 to the bottom of your config.php
9
10 Settings
11 ========
12 servers: Array of memcached servers addresses
13 defaultExpiry: How long before cache expires (in seconds)
14
15 Example
16 =======
17 addPlugin('Memcached', array(
18     'servers' => array('127.0.0.1;11211'),
19     'defaultExpiry' => 86400 // 24h
20 ));
21