README 302 B

123456789101112131415161718
  1. The DiskCache plugin implements cache interface with disk files.
  2. Installation
  3. ============
  4. add "addPlugin('DiskCache');"
  5. to the bottom of your config.php
  6. Settings
  7. ========
  8. root: Directory where to save cache data. Default /tmp
  9. Example
  10. =======
  11. addPlugin('DiskCache', array(
  12. 'root' => '/tmp'
  13. ));