2.1.3 (2023-11-15)

- Resolved issue with SET EX TTL's using unix-timestamps
This commit is contained in:
Daniel Mason 2023-11-15 09:52:10 +13:00
parent 0b925b68bd
commit 948b758a57
Signed by: idanoo
GPG key ID: 387387CDBC02F132
6 changed files with 16 additions and 21 deletions

View file

@ -17,7 +17,7 @@ class RedisTest extends TestCase
$this->redis->set(
'testKey',
24,
['ex' => time() + 3600],
['ex' => 3600],
);
$val = $this->redis->get("testKey");