截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CacheBase.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\cache;
  20. use think\facade\Cache;
  21. abstract class CacheBase
  22. {
  23. protected $tag;
  24. protected $extend;
  25. protected $name;
  26. public function __construct($key = '', $extend = [])
  27. {
  28. $this->tag = $this->setTag();
  29. $this->name = $this->tag . '_' . $key;
  30. $this->extend = $extend;
  31. }
  32. public abstract function setTag();
  33. /**
  34. * 子类实现查出数据
  35. * @return mixed
  36. */
  37. public abstract function setData();
  38. /**
  39. * 创建并获取数据
  40. * @param null $expire
  41. * @return mixed
  42. */
  43. public function set($expire = null)
  44. {
  45. $data = self::cacheGet($this->name);
  46. if ($data !== false) {
  47. return $data;
  48. }
  49. $data = $this->setData();
  50. self::cacheSet($this->name, $data, $expire);
  51. return $data;
  52. }
  53. /**
  54. * User: 意象信息科技 lr
  55. * Desc: 获取数据
  56. * @return mixed
  57. */
  58. public function get()
  59. {
  60. return self::cacheGet($this->name);
  61. }
  62. /**
  63. * 判断数据是否为空
  64. * @return bool
  65. */
  66. public function isEmpty()
  67. {
  68. $data = self::cacheGet($this->name);
  69. if ($data !== false) {
  70. return false;
  71. }
  72. return true;
  73. }
  74. /**
  75. * 删除数据
  76. * @return bool
  77. */
  78. public function del()
  79. {
  80. if (self::isEmpty()) {
  81. return true;
  82. }
  83. return self::cacheRm($this->name);
  84. }
  85. public function delAll()
  86. {
  87. return Cache::clear($this->tag);
  88. }
  89. /**
  90. * 刷新并获取
  91. * @return mixed
  92. */
  93. public function refresh()
  94. {
  95. $this->del();
  96. return $this->set();
  97. }
  98. protected function cacheSet($name, $value, $expire = null)
  99. {
  100. Cache::tag($this->tag)->set($name, $value, $expire);
  101. }
  102. protected function cacheRm($name)
  103. {
  104. return Cache::delete($name);
  105. }
  106. protected function cacheGet($name, $default = false)
  107. {
  108. return Cache::get($name, $default);
  109. }
  110. }