InterfaceCache.php 416 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @link:http://www.gdqijianshi.com/
  4. * @copyright: Copyright (c) 2020 广东七件事集团
  5. * 缓存接口类
  6. * Author: zal
  7. * Date: 2020-04-24
  8. * Time: 16:55
  9. */
  10. namespace common\components\sensitivewords;
  11. interface InterfaceCache
  12. {
  13. public function setValue($key,$value,$duration);
  14. public function getValue($key);
  15. public function deleteValue($key);
  16. public function getDuration();
  17. }