diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-28 14:18:12 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-28 14:18:12 -0400 |
commit | 11eed225b799c14519ee46305be11566dbbb22b8 (patch) | |
tree | 4dc135243def012483817dffed9c98ed70c2e2b6 /classes/Notice.php | |
parent | ddf2dce601e312fc06b38cb0dfb15857ff98ff7f (diff) |
blow the cached streams for tags on a new notice
darcs-hash:20080928181812-5ed1f-708380f239b17b2a53b7279aa4a55af11156a5e8.gz
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index e72892966..3402e2b30 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -140,6 +140,22 @@ class Notice extends Memcached_DataObject $this->blowNoticeCache(); $this->blowRepliesCache(); $this->blowPublicCache(); + $this->blowTagCache(); + } + + function blowTagCache() { + $cache = common_memcache(); + if ($cache) { + $tag = new Notice_tag(); + $tag->notice_id = $this->id; + if ($tag->find()) { + while ($tag->fetch()) { + $tag->blowCache(); + } + } + $tag->free(); + unset($tag); + } } function blowSubsCache() { |