Calculate the interaction score

This commit is contained in:
Michael 2023-08-30 19:17:42 +00:00
parent 350999fcca
commit 35995633ae
8 changed files with 150 additions and 10 deletions

View file

@ -104,6 +104,9 @@ class Cron
// Clear cache entries
Worker::add(Worker::PRIORITY_LOW, 'ClearCache');
// Update interaction scores
Worker::add(Worker::PRIORITY_LOW, 'UpdateScores');
DI::keyValue()->set('last_cron_hourly', time());
}