I would like to inform a bug in redis cache implementation. The keys are not removed after its expiry.
In the screenshot, the keys test_
and online_1001
continues to exist in PHCR set even after expiry. Please note these keys are not present on the list on left panel.
Its problematic since
$cache->queryKeys();
would show even dead keys
Though when I try
$this->cache->exists('test_');
it returns correctly (i.e.,false)