RemoveTermCache.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. use App\Models\DhammaTerm;
  5. use App\Models\Channel;
  6. use Illuminate\Support\Facades\Cache;
  7. class RemoveTermCache extends Command
  8. {
  9. /**
  10. * The name and signature of the console command.
  11. *
  12. * @var string
  13. */
  14. protected $signature = 'remove:term.cache {word?}';
  15. /**
  16. * The console command description.
  17. *
  18. * @var string
  19. */
  20. protected $description = 'Command description';
  21. /**
  22. * Create a new command instance.
  23. *
  24. * @return void
  25. */
  26. public function __construct()
  27. {
  28. parent::__construct();
  29. }
  30. /**
  31. * Execute the console command.
  32. *
  33. * @return int
  34. */
  35. public function handle()
  36. {
  37. if(\App\Tools\Tools::isStop()){
  38. return 0;
  39. }
  40. $word = $this->argument('word');
  41. $channels = Channel::select('uid')->get();
  42. if(empty($word)){
  43. }else{
  44. foreach ($channels as $key => $channel) {
  45. $key = "/term/{$channel}/{$word}";
  46. if(Cache::has($key)){
  47. $this->info('has:'.$key);
  48. Cache::forget($key);
  49. }
  50. }
  51. }
  52. return 0;
  53. }
  54. }