mirror of
https://github.com/friendica/friendica
synced 2025-04-27 02:30:10 +00:00
Issue 9276: Cache the trending hashtags in the background
This commit is contained in:
parent
04f993b611
commit
f7cf8fe3d0
2 changed files with 59 additions and 22 deletions
|
@ -25,6 +25,7 @@ use Friendica\Core\Hook;
|
|||
use Friendica\Core\Logger;
|
||||
use Friendica\Core\Worker;
|
||||
use Friendica\DI;
|
||||
use Friendica\Model\Tag;
|
||||
|
||||
class Cron
|
||||
{
|
||||
|
@ -74,6 +75,10 @@ class Cron
|
|||
// Repair entries in the database
|
||||
Worker::add(PRIORITY_LOW, 'RepairDatabase');
|
||||
|
||||
// Update trending tags cache for the community page
|
||||
Tag::setLocalTrendingHashtags(24, 20);
|
||||
Tag::setGlobalTrendingHashtags(24, 20);
|
||||
|
||||
// Hourly cron calls
|
||||
if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue