Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
49 | public function sequence(int $currentTime) |
||
50 | { |
||
51 | $lua = "return redis.call('exists',KEYS[1])<1 and redis.call('psetex',KEYS[1],ARGV[2],ARGV[1])"; |
||
52 | |||
53 | if ($this->redis->eval($lua, [($key = $this->prefix.$currentTime), 1, 1000], 1)) { |
||
54 | return 0; |
||
55 | } |
||
56 | |||
57 | return $this->redis->incrby($key, 1); |
||
58 | } |
||
59 | |||
70 |