Skip to content

Instantly share code, notes, and snippets.

@barnabyc
Last active October 15, 2015 01:39
Show Gist options
  • Save barnabyc/e6e70b9c487d59ad4ed0 to your computer and use it in GitHub Desktop.
Save barnabyc/e6e70b9c487d59ad4ed0 to your computer and use it in GitHub Desktop.
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