浏览代码

Update StatusHashtagService

Daniel Supernault 6 年之前
父节点
当前提交
8a47b03a1b
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. 7 2
      app/Services/StatusHashtagService.php

+ 7 - 2
app/Services/StatusHashtagService.php

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