Merge pull request #9294 from annando/tag-cache

Tags: Use the parameters for the cache key
This commit is contained in:
Tobias Diekershoff 2020-09-27 10:45:04 +02:00 committed by GitHub
commit 31630099ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -537,7 +537,7 @@ class Tag
*/
public static function getLocalTrendingHashtags(int $period, $limit = 10)
{
$tags = DI::cache()->get('local_trending_tags');
$tags = DI::cache()->get('local_trending_tags-' . $period . '-' . $limit);
if (!empty($tags)) {
return $tags;
} else {
@ -563,7 +563,7 @@ class Tag
if (DBA::isResult($tagsStmt)) {
$tags = DBA::toArray($tagsStmt);
DI::cache()->set('local_trending_tags', $tags, Duration::HOUR);
DI::cache()->set('local_trending_tags-' . $period . '-' . $limit, $tags, Duration::HOUR);
return $tags;
}