RedisList has compatibility issues
See original GitHub issueHi @brainix ~ Thank you very much for your contribution first. ‘RedisList’ and ‘list’ behave inconsistently in some cases, for example:
>>> l = []
>>> l[0:0] = ['a','b', 'c']
>>> l
['a', 'b', 'c']
>>> l[:] = ['a','b', 'c'] * 20
>>> l
['a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c']
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Major version behavior and compatibility differences
This list is inclusive of any version incompability issues you may encounter when upgrading. ... For a full list of changes, see Redis...
Read more >Redis versions and features compatibility list #134 - GitHub
Redix should be compatible with any decently modern Redis (the protocol has been the same for a long time). All reactions.
Read more >Spring Data Redis and Jedis Compatibility issue
This error gets resolved when I import a Jedis client (version 2.9.0). But breaks at a different point during runtime. I am curious...
Read more >ACL - Redis
Redis Access Control List. ... every possible command and accessing every key, so the ACL feature is backward compatible with old clients and...
Read more >Redis 7.0 Is Out!
Upgrading from earlier versions is a relatively straightforward process, as backward compatibility has always been a design principle of the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, @wy-z. Thank you for the feedback. I’ll look into how to address these issues later this week as soon as I get a break from work, and I’ll keep you updated here.
My pleasure, thanks again for your work.