PK algorithm change
This release breaks compatibility with older releases.
To migrate to new version you should migrate your pks. Example code:
function fill($keys)
{
foreach ($keys as $key) {
yield $key;
yield 0;
}
}
$keys = $redis->executeCommand('LRANGE', ['model', 0, -1]);
$keys = iterator_to_array(fill($keys));
$keys = array_unshift($keys, 'model')
$redis->executeCommand('DEL', 'model')
$redis->executeCommand('HMSET', $keys)