README 435 B

12345678910111213141516171819202122
  1. The Memcached plugin implements cache interface for memcached.
  2. See: http://memcached.org/
  3. Installation
  4. ============
  5. add "addPlugin('Memcached');"
  6. to the bottom of your config.php
  7. Settings
  8. ========
  9. servers: Array of memcached servers addresses
  10. defaultExpiry: How long before cache expires (in seconds)
  11. Example
  12. =======
  13. addPlugin('Memcached', array(
  14. 'servers' => array('127.0.0.1;11211'),
  15. 'defaultExpiry' => 86400 // 24h
  16. ));