X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FNotice_tag.php;h=ea38bb3502f86d47e8a0aeec5c3affd8af41ee8f;hb=bf59eaf602c8319d5ae99d9809b4d4867cb632cd;hp=e5b7722430b99be54a6fe2927b13275f86f44df0;hpb=003c63e587128c6d095386c563c2615c2ac245c2;p=quix0rs-gnu-social.git diff --git a/classes/Notice_tag.php b/classes/Notice_tag.php index e5b7722430..ea38bb3502 100644 --- a/classes/Notice_tag.php +++ b/classes/Notice_tag.php @@ -1,7 +1,7 @@ whereAdd('notice_id > ' . $since_id); } - if ($before_id != 0) { - $nt->whereAdd('notice_id < ' . $before_id); - } - - if (!is_null($since)) { - $nt->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\''); + if ($max_id != 0) { + $nt->whereAdd('notice_id <= ' . $max_id); } $nt->orderBy('notice_id DESC'); @@ -86,17 +82,13 @@ class Notice_tag extends Memcached_DataObject function blowCache($blowLast=false) { - $cache = common_memcache(); - if ($cache) { - $idkey = common_cache_key('notice_tag:notice_ids:' . common_keyize($this->tag)); - $cache->delete($idkey); - if ($blowLast) { - $cache->delete($idkey.';last'); - } + self::blow('notice_tag:notice_ids:%s', Cache::keyize($this->tag)); + if ($blowLast) { + self::blow('notice_tag:notice_ids:%s;last', Cache::keyize($this->tag)); } } - function &pkeyGet($kv) + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Notice_tag', $kv); }