forked from GNUsocial/gnu-social
fix caching of faves by own, other
This commit is contained in:
parent
eedfaa7d1a
commit
ac361791c4
@ -42,7 +42,7 @@ class Fave extends Memcached_DataObject
|
|||||||
$ids = Notice::stream(array('Fave', '_streamDirect'),
|
$ids = Notice::stream(array('Fave', '_streamDirect'),
|
||||||
array($user_id, $own),
|
array($user_id, $own),
|
||||||
($own) ? 'fave:ids_by_user_own:'.$user_id :
|
($own) ? 'fave:ids_by_user_own:'.$user_id :
|
||||||
'fave:by_user:'.$user_id,
|
'fave:ids_by_user:'.$user_id,
|
||||||
$offset, $limit);
|
$offset, $limit);
|
||||||
return $ids;
|
return $ids;
|
||||||
}
|
}
|
||||||
|
@ -491,6 +491,8 @@ class User extends Memcached_DataObject
|
|||||||
// ;last cache, too
|
// ;last cache, too
|
||||||
$cache->delete(common_cache_key('fave:ids_by_user:'.$this->id));
|
$cache->delete(common_cache_key('fave:ids_by_user:'.$this->id));
|
||||||
$cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last'));
|
$cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last'));
|
||||||
|
$cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id));
|
||||||
|
$cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user