]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - README
4efa43a4db76c7e159ba704e0d5b6d03bf7692cf
[quix0rs-gnu-social.git] / 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