Update StatusHashtagService

pull/1480/head
Daniel Supernault 6 years ago
parent 58a19bbf05
commit 8a47b03a1b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -18,10 +18,15 @@ class StatusHashtagService {
$res = collect([]); $res = collect([]);
$key = self::CACHE_KEY . $id; $key = self::CACHE_KEY . $id;
$stop = $stop > 2000 ? 2000 : $stop; $stop = $stop > 2000 ? 2000 : $stop;
$ids = Redis::zrangebyscore($key, $start, $stop); $ids = Redis::zrevrangebyscore($key, $start, $stop);
if(empty($ids)) { if(empty($ids)) {
if(self::count($id) == 0) {
$ids = self::coldGet($id, 0, 2000);
$ids = $ids->splice($start, $stop);
} else {
$ids = self::coldGet($id, $start, $stop); $ids = self::coldGet($id, $start, $stop);
} }
}
foreach($ids as $statusId) { foreach($ids as $statusId) {
$res->push(self::getStatus($statusId, $id)); $res->push(self::getStatus($statusId, $id));
} }

Loading…
Cancel
Save