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