From: Mikael Nordfeldth Date: Tue, 1 Jul 2014 20:13:11 +0000 (+0200) Subject: Caching fixes for Fave class X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b66ec247db709a73646f750759a8e4fed408b4d5;p=quix0rs-gnu-social.git Caching fixes for Fave class --- diff --git a/plugins/Favorite/classes/Fave.php b/plugins/Favorite/classes/Fave.php index 777f3a362a..089cafc884 100644 --- a/plugins/Favorite/classes/Fave.php +++ b/plugins/Favorite/classes/Fave.php @@ -69,7 +69,8 @@ class Fave extends Managed_DataObject common_log_db_error($fave, 'INSERT', __FILE__); return false; } - self::blow('fave:list-ids:notice_id:%d', $fave->notice_id); + self::blowCacheForProfileId($fave->user_id); + self::blowCacheForNoticeId($fave->notice_id); self::blow('popular'); Event::handle('EndFavorNotice', array($profile, $notice)); @@ -88,7 +89,9 @@ class Fave extends Managed_DataObject if (Event::handle('StartDisfavorNotice', array($profile, $notice, &$result))) { $result = parent::delete($useWhere); - self::blow('fave:list-ids:notice_id:%d', $this->notice_id); + + self::blowCacheForProfileId($this->user_id); + self::blowCacheForNoticeId($this->notice_id); self::blow('popular'); if ($result) { @@ -266,4 +269,11 @@ class Fave extends Managed_DataObject $cache->delete(Cache::key('fave:count_by_profile:'.$profile_id)); } } + static public function blowCacheForNoticeId($notice_id) + { + $cache = Cache::instance(); + if ($cache) { + $cache->delete(Cache::key('fave:list-ids:notice_id:'.$notice_id)); + } + } }