1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 11:58:41 +08:00
course-tencent-cloud/app/Console/Tasks/SyncArticleScoreTask.php
2021-05-07 19:34:31 +08:00

45 lines
906 B
PHP

<?php
namespace App\Console\Tasks;
use App\Repos\Article as ArticleRepo;
use App\Services\Sync\ArticleScore as ArticleScoreSync;
use App\Services\Utils\ArticleScore as ArticleScoreService;
class SyncArticleScoreTask extends Task
{
public function mainAction()
{
$redis = $this->getRedis();
$key = $this->getSyncKey();
$articleIds = $redis->sRandMember($key, 1000);
if (!$articleIds) return;
$articleRepo = new ArticleRepo();
$articles = $articleRepo->findByIds($articleIds);
if ($articles->count() == 0) return;
$service = new ArticleScoreService();
foreach ($articles as $article) {
$service->handle($article);
}
$redis->sRem($key, ...$articleIds);
}
protected function getSyncKey()
{
$sync = new ArticleScoreSync();
return $sync->getSyncKey();
}
}