Skip to content

Commit d26b4cc

Browse files
committed
Fix cache redis ttl to work
* backported redis cache ttl does not work from bcit-ci/CodeIgniter#6231
1 parent 0175908 commit d26b4cc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

appsys/libraries/Cache/drivers/Cache_redis.php

+4
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,10 @@ public function save($id, $data, $ttl = 60, $raw = FALSE)
214214
$this->_redis->{static::$_sRemove_name}('_ci_redis_serialized', $id);
215215
}
216216

217+
if (is_numeric($ttl)) {
218+
$this->_redis->expireAt($id, time() + $ttl);
219+
}
220+
217221
return $this->_redis->set($id, $data, $ttl);
218222
}
219223

0 commit comments

Comments
 (0)