clear memcached cache in fixup_inboxes

darcs-hash:20081113223514-84dde-be89824e7986a9af30bd42e89228a0f7ce949240.gz
This commit is contained in:
Evan Prodromou 2008-11-13 17:35:14 -05:00
parent 1d3ac2f0d7
commit fbb6efb131
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,7 @@ common_log(LOG_INFO, 'Updating user inboxes.');
$user = new User();
$cnt = $user->find();
$cache = common_memcache();
while ($user->fetch()) {
common_log(LOG_INFO, 'Updating inbox for user ' . $user->id);
@ -62,4 +63,7 @@ while ($user->fetch()) {
$user->query('COMMIT');
$inbox->free();
unset($inbox);
if ($cache) {
$cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
}
}