compress window-getting to one function

darcs-hash:20080915071835-84dde-173e6afde44c3348c3314c638e2a67dfb333c011.gz
This commit is contained in:
Evan Prodromou 2008-09-15 03:18:35 -04:00
parent d86f954797
commit 7334add156
1 changed files with 7 additions and 14 deletions

View File

@ -146,10 +146,7 @@ class User extends DB_DataObject
if (common_config('memcached', 'enabled')) {
if ($offset + $limit < WITHFRIENDS_CACHE_WINDOW) {
$cached = $this->noticesWithFriendsCachedWindow();
if (!$cached) {
$cached = $this->noticesWithFriendsWindow();
}
$cached = $this->noticesWithFriendsWindow();
$wrapper = new NoticeWrapper(array_slice($cached, $offset, $limit));
return $wrapper;
}
@ -166,16 +163,6 @@ class User extends DB_DataObject
return $notice;
}
function noticesWithFriendsCachedWindow() {
$cache = new Memcache();
$res = $cache->connect(common_config('memcached', 'server'), common_config('memcached', 'port'));
if (!$res) {
return NULL;
}
$notices = $cache->get(common_cache_key('user:notices_with_friends:' . $this->id));
return $notices;
}
function noticesWithFriendsWindow() {
$cache = new Memcache();
@ -185,6 +172,12 @@ class User extends DB_DataObject
return NULL;
}
$notices = $cache->get(common_cache_key('user:notices_with_friends:' . $this->id));
if ($notices) {
return $notices;
}
$notice = new Notice();
$notice->query('SELECT notice.* ' .