function DrupalAPCCache::flush in APC - Alternative PHP Cache 7
Flush all cache items in a bin.
1 call to DrupalAPCCache::flush()
- DrupalAPCCache::clear in ./
drupal_apc_cache.inc - Expires data from the cache.
File
- ./
drupal_apc_cache.inc, line 256 - This integrates the drupal APC cache backend.
Class
- DrupalAPCCache
- APC cache implementation.
Code
function flush() {
$this
->deletePrefix('');
}