Merge pull request #24798 from nextcloud/backport/24796/stable20
[stable20] Actually set the TTL on redis set
This commit is contained in:
commit
d5f4ca6e74
|
@ -101,7 +101,13 @@ class Redis extends Cache implements IMemcacheTTL {
|
||||||
if (!is_int($value)) {
|
if (!is_int($value)) {
|
||||||
$value = json_encode($value);
|
$value = json_encode($value);
|
||||||
}
|
}
|
||||||
return self::$cache->setnx($this->getPrefix() . $key, $value);
|
|
||||||
|
$args = ['nx'];
|
||||||
|
if ($ttl !== 0 && is_int($ttl)) {
|
||||||
|
$args['ex'] = $ttl;
|
||||||
|
}
|
||||||
|
|
||||||
|
return self::$cache->set($this->getPrefix() . $key, $value, $args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue