diff --git a/app/Services/HashtagService.php b/app/Services/HashtagService.php index d3cfb2743..84fd1986b 100644 --- a/app/Services/HashtagService.php +++ b/app/Services/HashtagService.php @@ -29,7 +29,7 @@ class HashtagService public static function count($id) { - return Cache::remember('services:hashtag:public-count:by_id:' . $id, 3600, function() use($id) { + return Cache::remember('services:hashtag:total-count:by_id:' . $id, 300, function() use($id) { $tag = Hashtag::find($id); return $tag ? $tag->cached_count ?? 0 : 0; });