ClearCacheJob.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\jobs;
  12. use app\common\repositories\system\CacheRepository;
  13. use app\common\repositories\user\UserRepository;
  14. use crmeb\interfaces\JobInterface;
  15. use think\facade\Log;
  16. class ClearCacheJob implements JobInterface
  17. {
  18. public function fire($job, $type)
  19. {
  20. $make = app()->make(CacheRepository::class);
  21. try {
  22. $make->clearCacheAll($type);
  23. } catch (\Exception $e) {
  24. Log::INFO('清除缓存失败:'.$type);
  25. };
  26. $job->delete();
  27. }
  28. public function failed($data)
  29. {
  30. // TODO: Implement failed() method.
  31. }
  32. }