function apc_clear_opcode_cache in APC - Alternative PHP Cache 7
Helper function to clear opcode cache.
1 string reference to 'apc_clear_opcode_cache'
- apc_form_system_performance_settings_alter in ./
apc.module - Implements hook_form_FORM_ID_alter().
File
- ./
apc.module, line 164 - This integrates the drupal APC cache module.
Code
function apc_clear_opcode_cache() {
if (apc_clear_cache()) {
drupal_set_message(t('Cleared APC opcode cache.'));
}
else {
drupal_set_message(t('Unable to clear APC opcode cache.'), 'error');
}
}