Created
August 20, 2016 01:04
-
-
Save kenzotakahashi/7c7c3285ee2b8df6667d5ea717fa794a 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
require "redis" | |
redis = Redis.new | |
redis.zadd "date:2016-8-5", 214, 1 | |
redis.zadd "date:2016-8-5", 252, 2 | |
redis.zadd "date:2016-8-5", 5222, 3 | |
redis.zadd "date:2016-8-5", 2231, 4 | |
redis.zadd "date:2016-8-5", 442, 5 | |
redis.zadd "date:2016-8-6", 424, 1 | |
redis.zadd "date:2016-8-6", 425, 2 | |
redis.zadd "date:2016-8-6", 6534, 3 | |
redis.zadd "date:2016-8-6", 3214, 4 | |
redis.zadd "date:2016-8-6", 565, 5 | |
# p redis.zrange "date:2016-8-5", 0, -1 | |
p redis.zrevrange "date:2016-8-5", 0, -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment