key = $key; $this->init(); } /** * 是否到达限流 * * @time 2020年06月30日 * @return void */ public function overflow() { if ($this->getCurrentVisitTimes() > $this->limit) { throw new FailedException('访问限制'); } $this->inc(); } /** * 增加接口次数 * * @time 2020年06月30日 * @return void */ public function inc() { $this->getRedis()->incr($this->key); } /** * 初始化 * * @time 2020年06月30日 * @return void */ protected function init() { if (!$this->getRedis()->exists($this->key)) { $this->getRedis()->setex($this->key, $this->ttl, 0); } } /** * 获取当前访问次数 * * @time 2020年06月30日 * @return mixed */ protected function getCurrentVisitTimes() { return $this->getRedis()->get($this->key); } }