Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // this script disables all caches on wiki
  2. // so that all the shell command from above
  3. // could refresh every time people visit
  4. // could be used to monitor/display real time
  5. // machine metrics
  6. // WARNING: it could slow down the page siginificantly
  7.  
  8. # cache setting
  9. $wgMainCacheType = CACHE_NONE;
  10. $wgUseFileCache = false;
  11. $wgEnableParserCache = false;
  12. $wgUseLocalMessageCache = false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement