blow last cache for faves

darcs-hash:20081122165234-84dde-d9d6a608434502cb3d5fb09f04d0c641900c3134.gz
This commit is contained in:
Evan Prodromou 2008-11-22 11:52:34 -05:00
parent 5d161f3d24
commit 24ad0b3c13
1 changed files with 3 additions and 0 deletions

View File

@ -386,7 +386,10 @@ class User extends Memcached_DataObject
function blowFavesCache() {
$cache = common_memcache();
if ($cache) {
# Faves don't happen chronologically, so we need to blow
# ;last cache, too
$cache->delete(common_cache_key('user:faves:'.$this->id));
$cache->delete(common_cache_key('user:faves:'.$this->id).';last');
}
}
}