CacheDao.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\dao\other;
  12. use app\dao\BaseDao;
  13. use app\model\other\Cache;
  14. /**
  15. * Class CacheDao
  16. * @package app\dao\other
  17. */
  18. class CacheDao extends BaseDao
  19. {
  20. /**
  21. * @return string
  22. */
  23. public function setModel(): string
  24. {
  25. return Cache::class;
  26. }
  27. /**
  28. * 清除过期缓存
  29. * @throws \Exception
  30. */
  31. public function delectDeOverdueDbCache()
  32. {
  33. $this->getModel()->where('expire_time', '<>', 0)->where('expire_time', '<', time())->delete();
  34. }
  35. }