You are here

function apc_clear_user_cache in APC - Alternative PHP Cache 7

Helper function to clear user cache.

1 string reference to 'apc_clear_user_cache'
apc_form_system_performance_settings_alter in ./apc.module
Implements hook_form_FORM_ID_alter().

File

./apc.module, line 152
This integrates the drupal APC cache module.

Code

function apc_clear_user_cache() {
  if (apc_clear_cache('user')) {
    drupal_set_message(t('Cleared APC user cache.'));
  }
  else {
    drupal_set_message(t('Unable to clear APC user cache.'), 'error');
  }
}