]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/CacheLog/README
Empty resource would throw exception
[quix0rs-gnu-social.git] / plugins / CacheLog / README
1 Log cache access
2
3 Adds "Cache MISS, Cache HIT, set cache value, delete cache value" etc.
4 information to the log file.
5
6 Note: entries are logged at the LOG_INFO level.
7
8 Installation
9 ============
10 add "addPlugin('CacheLog');"
11 to the bottom of your config.php
12
13 Settings
14 ========
15 none
16
17 Example
18 =======
19 Note that since most caching plugins return false for StartCache*
20 methods, you should add this plugin before them, i.e.
21
22     addPlugin('CacheLog');
23     addPlugin('XCache');