-
Notifications
You must be signed in to change notification settings - Fork 743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis 7 support #193
base: master
Are you sure you want to change the base?
Redis 7 support #193
Conversation
Thank you for filling that void. Before i try to find time to take a deeper look. is there anything you're aware that's still missing for Redis 7.0 support? p.s. maybe while at it, you can also handle Redis 7.2 support (listpack used for sets as well) |
Rethinking my previous statement, considering this project is abandoned, merging PRs and making a new release could make the wrong impression and can cause someone to think it's alive and build new solutions based on it, which would be a shame. The main reason i wanted to merge this was that AFAIK there's currently a vacuum around that area, and no tools that can handle Redis 7.0 RDB files. However, i now took another look at redis-rdb-cli, and it seems it closed that gap and is now able to read listpacks and redis 7.0 RDB files. @leonchen83 please correct me if i'm wrong. some evidence: |
@oranagra redis-rdb-cli fully support redis 7 RDB files |
thanks @leonchen83 i was really worried that for a long time there was nothing out there capable of processing listpacks and users who upgraded to 7.0 (and can't downgrade) have nothing to work with. p.s. I suppose you can start doing the additional minor adjustments for Redis 7.2 (sets use listpack, and and streams active-time) |
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
您好,我已收到您的邮件,谢谢!!~~
|
I was able to use https://github.com/leonchen83/redis-rdb-cli with redis dump file format 11 |
您好,我已收到您的邮件,谢谢!!~~
|
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
@sripathikrishnan , this PR is beneficial for my current project, please review and approve it as soon as possible. Currently, my project uses this PR as a patch. Merging it will be good for this project. Thanks a lot. |
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
您好,我已收到您的邮件,谢谢!!~~
|
Support to analyze RDB version 10.
Be able to decode listpack object to hash,zset.
Be able to decode quicklist object to list, stream.