Last active
October 15, 2015 01:39
-
-
Save barnabyc/e6e70b9c487d59ad4ed0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127.0.0.1:6379> zadd myindex 0 "banana:123" 0 "banahhh:1" 0 "banned user:49" 0 "banning:89" | |
(integer) 4 | |
127.0.0.1:6379> ZRANGEBYLEX myindex "[banana:" + LIMIT 0 10 | |
1) "banana:123" | |
2) "banned user:49" | |
3) "banning:89" | |
127.0.0.1:6379> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment