README 594 B

123456789101112131415161718192021222324
  1. The InProcessCache plugin adds an extra level of in-process caching to any
  2. regular cache system like APC, XCache, or Memcache.
  3. Installation
  4. ============
  5. add "addPlugin('InProcessCache');"
  6. to the bottom of your config.php
  7. Settings
  8. ========
  9. stats: Whether to dump statistics (cache size, etc) in the log file.
  10. Note: entries are logged at the LOG_INFO level.
  11. Example
  12. =======
  13. Note: since most caching plugins return false for StartCache* methods, you
  14. should add this plugin before them, i.e.
  15. $config['inprocess']['stats'] = true;
  16. addPlugin('InProcessCache');
  17. addPlugin('XCache');