diff --git a/app/Services/StatusHashtagService.php b/app/Services/StatusHashtagService.php index 6107c293b..ef8c80a83 100644 --- a/app/Services/StatusHashtagService.php +++ b/app/Services/StatusHashtagService.php @@ -57,7 +57,7 @@ class StatusHashtagService { public static function count($id) { $key = 'pf:services:status-hashtag:count:' . $id; - $ttl = now()->addHours(6); + $ttl = now()->addMinutes(5); return Cache::remember($key, $ttl, function() use($id) { return StatusHashtag::whereHashtagId($id)->count(); });