You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from 7.0 redis/valkey save their "listpack" zsets and hsets using RDB_TYPE_ZSET_LISTPACK and RDB_TYPE_HASH_LISTPACK respectively. Dragonfly still uses RDB_TYPE_ZSET_ZIPLIST and RDB_TYPE_HASH_ZIPLIST encodings that have been employed by Redis 6 or odler.
We should start saving using listpack format and remove ziplist dependency during the save path.
The text was updated successfully, but these errors were encountered:
Starting from 7.0 redis/valkey save their "listpack" zsets and hsets using RDB_TYPE_ZSET_LISTPACK and RDB_TYPE_HASH_LISTPACK respectively. Dragonfly still uses RDB_TYPE_ZSET_ZIPLIST and RDB_TYPE_HASH_ZIPLIST encodings that have been employed by Redis 6 or odler.
We should start saving using listpack format and remove ziplist dependency during the save path.
The text was updated successfully, but these errors were encountered: