CacheTrieCommand.php 834 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. declare (strict_types = 1);
  3. namespace catcher\command\Tools;
  4. use catchAdmin\system\model\SensitiveWord;
  5. use catcher\library\Trie;
  6. use think\console\Command;
  7. use think\console\Input;
  8. use think\console\Output;
  9. class CacheTrieCommand extends Command
  10. {
  11. protected $table;
  12. protected function configure()
  13. {
  14. // 指令配置
  15. $this->setName('cache:sensitiveWord')
  16. ->setDescription('cache sensitive word');
  17. }
  18. protected function execute(Input $input, Output $output)
  19. {
  20. $words = SensitiveWord::cursor();
  21. $trie = new Trie();
  22. foreach ($words as $word) {
  23. $trie->add($word->word);
  24. }
  25. if ($trie->cached()) {
  26. $output->info('trie cached');
  27. } else {
  28. $output->error('trie cached failed');
  29. }
  30. }
  31. }