From: Michael Date: Sat, 26 Sep 2020 12:16:46 +0000 (+0000) Subject: Use period and limit in the cache key X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b90dc028974767400376f327b2522d0b2b7a8d3;p=friendica.git Use period and limit in the cache key --- diff --git a/src/Model/Tag.php b/src/Model/Tag.php index f5932dd602..0d6c9cfb51 100644 --- a/src/Model/Tag.php +++ b/src/Model/Tag.php @@ -494,7 +494,7 @@ class Tag */ public static function getGlobalTrendingHashtags(int $period, $limit = 10) { - $tags = DI::cache()->get('global_trending_tags'); + $tags = DI::cache()->get('global_trending_tags-' . $period . '-' . $limit); if (!empty($tags)) { return $tags; } else { @@ -520,7 +520,7 @@ class Tag if (DBA::isResult($tagsStmt)) { $tags = DBA::toArray($tagsStmt); - DI::cache()->set('global_trending_tags', $tags, Duration::HOUR); + DI::cache()->set('global_trending_tags-' . $period . '-' . $limit, $tags, Duration::HOUR); return $tags; }