|
@@ -47,6 +47,10 @@ class UpdateReplyCount extends Command
|
|
|
public function handle()
|
|
|
{
|
|
|
$this->line("开始更新评论回复数量");
|
|
|
+
|
|
|
+ for($i=1;$i<1000;$i++){
|
|
|
+ Redis::del('post_new_comment_'.$i);
|
|
|
+ }
|
|
|
|
|
|
$bar = $this->output->createProgressBar($this->postComment->where('parent_id', 0)->count());
|
|
|
$this->postComment->where('parent_id', 0)->chunk(100, function($comments) use ($bar){
|