[CORE][Cache] Workaround to redis not allowing empty lists

This commit is contained in:
Hugo Sales 2022-01-08 17:13:08 +00:00
parent 06ece5b72e
commit cdf1d67d0f
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 3 additions and 2 deletions

View File

@ -242,7 +242,7 @@ abstract class Cache
public static function getList(string $key, callable $calculate, string $pool = 'default', ?int $max_count = null, ?int $left = null, ?int $right = null, float $beta = 1.0): array
{
if (isset(self::$redis[$pool])) {
return self::redisMaybeRecompute(
$result = self::redisMaybeRecompute(
$key,
recompute: /**
* Caculate and trim the list to the correct size
@ -268,6 +268,7 @@ abstract class Cache
pool: $pool,
beta: $beta,
);
return empty($result) ? [] : $result; // TODO may be wrong? not sure
} else {
return self::get(
$key,
@ -295,7 +296,7 @@ abstract class Cache
{
if (isset(self::$redis[$pool])) {
if (empty($value)) {
self::$redis[$pool]->del($key); // Redis doesn't support empty lists
self::$redis[$pool]->set($key, []);
} else {
self::$redis[$pool] // Ensure atomic
->multi(Redis::MULTI)