use codeKey() in activity caching
This commit is contained in:
parent
25f644f4b9
commit
1fb506c27d
|
@ -1236,7 +1236,7 @@ class Notice extends Memcached_DataObject
|
|||
|
||||
function asActivity($cur = null, $source = false)
|
||||
{
|
||||
$act = self::cacheGet('notice:as-activity:'.$this->id);
|
||||
$act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
|
||||
|
||||
if (!empty($act)) {
|
||||
return $act;
|
||||
|
@ -1406,7 +1406,7 @@ class Notice extends Memcached_DataObject
|
|||
Event::handle('EndNoticeAsActivity', array($this, &$act));
|
||||
}
|
||||
|
||||
self::cacheSet('notice:as-activity:'.$this->id, $act);
|
||||
self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
|
||||
|
||||
return $act;
|
||||
}
|
||||
|
|
|
@ -331,7 +331,7 @@ class Activity
|
|||
{
|
||||
$c = Cache::instance();
|
||||
|
||||
$str = $c->get('activity:as-string:'.Cache::keyize($this->id));
|
||||
$str = $c->get(Cache::codeKey('activity:as-string:'.$this->id));
|
||||
|
||||
if (!empty($str)) {
|
||||
return $str;
|
||||
|
@ -559,7 +559,7 @@ class Activity
|
|||
|
||||
$str = $xs->getString();
|
||||
|
||||
$c->set('activity:as-string:'.Cache::keyize($this->id), $str);
|
||||
$c->set(Cache::codeKey('activity:as-string:'.$this->id), $str);
|
||||
|
||||
return $str;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user