wzq 5 年 前
コミット
7640c1c3ff
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4 0
      app/Console/Commands/UpdateReplyCount.php

+ 4 - 0
app/Console/Commands/UpdateReplyCount.php

@@ -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){