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
I'm working on redis backup and restore. I noticed that redis-rdb-tools is not able to restore the stream valued keys.
I insert a stream valued key in redis using redis-cli XADD mystream 1723191842108-1 field1 value1 field2 value2
After restoring the dump.rdb using rdb -c protocol dump.rdb | redis-cli --pipe, mystream key value pair is not present in the redis dataset. This is how I read the stream valued keys redis-cli XRANGE mystream - +
pip3 list | grep rdb
rdbtools 0.1.15
redis-cli --version
redis-cli 5.0.1
The text was updated successfully, but these errors were encountered:
I'm working on redis backup and restore. I noticed that redis-rdb-tools is not able to restore the stream valued keys.
I insert a stream valued key in redis using
redis-cli XADD mystream 1723191842108-1 field1 value1 field2 value2
After restoring the dump.rdb using
rdb -c protocol dump.rdb | redis-cli --pipe
, mystream key value pair is not present in the redis dataset. This is how I read the stream valued keysredis-cli XRANGE mystream - +
pip3 list | grep rdb
rdbtools 0.1.15
redis-cli --version
redis-cli 5.0.1
The text was updated successfully, but these errors were encountered: