You are here

function memcache_storage_user_update in Memcache Storage 7

Implements hook_user_update().

File

includes/session.inc, line 11
User session handling functions.

Code

function memcache_storage_user_update(&$edit, $account) {

  // Invalidate cached user object.
  MemcacheStorageAPI::delete($account->uid, 'users');
}