| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * @link:http://www.gdqijianshi.com/
- * @copyright: Copyright (c) 2020 广东七件事集团
- * 商品缓存类
- * Author: zal
- * Date: 2020-04-24
- * Time: 16:55
- */
- namespace common\components\sensitivewords;
- class BaiduCache extends BaseCache
- {
- public function addCache($id, $value,$duration)
- {
- return $this->setValue("BaiduCache".$id, $value,$duration);
- }
- public function getCache($id)
- {
- return $this->getValue("BaiduCache".$id);
- }
- public function delCache($id)
- {
- return $this->deleteValue("BaiduCache".$id);
- }
- }
|