protected function ApcCacheTestCase::generalWipe in APC - Alternative PHP Cache 7
Perform the general wipe.
Parameters
$bin: The bin to perform the wipe on.
File
- tests/
apc.test, line 89
Class
Code
protected function generalWipe($bin = NULL) {
if ($bin == NULL) {
$bin = $this->default_bin;
}
cache_clear_all(NULL, $bin);
}