Skip to content

Instantly share code, notes, and snippets.

@mabrahamde
Created October 22, 2013 15:33
Show Gist options
  • Save mabrahamde/7102842 to your computer and use it in GitHub Desktop.
Save mabrahamde/7102842 to your computer and use it in GitHub Desktop.
Clear APC cache Depending on distribution and configuration the APC cache may use separate memory segment for CLI and module/FPM. Thus you have to run the commands from your browser.
<?php
/**
* Clear APC cache
*
* Depending on distribution and configuration the APC cache may use separate memory segment for CLI and module/FPM.
* Thus you have to run the commands from your browser.
*/
foreach(array('user','opcode','') as $cacheType ){
apc_clear_cache($cacheType);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment