Redis.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\library\rate;
  13. use think\facade\Cache;
  14. trait Redis
  15. {
  16. /**
  17. * @var \Redis
  18. */
  19. protected $redis = null;
  20. /**
  21. * 返回 redis
  22. *
  23. * @time 2020年07月02日
  24. * @return \Redis
  25. */
  26. protected function getRedis(): \Redis
  27. {
  28. if (!$this->redis) {
  29. $this->redis = Cache::store('redis')->handler();
  30. }
  31. return $this->redis;
  32. }
  33. /**
  34. * 设置 ttl
  35. *
  36. * @time 2020年06月30日
  37. * @param $ttl
  38. * @return $this
  39. */
  40. public function ttl($ttl)
  41. {
  42. $this->ttl = $ttl;
  43. return $this;
  44. }
  45. /**
  46. * 设置限制次数
  47. *
  48. * @time 2020年06月30日
  49. * @param $limit
  50. * @return $this
  51. */
  52. public function limit($limit)
  53. {
  54. $this->limit = $limit;
  55. return $this;
  56. }
  57. }