Unknwon 2fd69f13d9 vendor: check in vendors | 7 년 전 | |
---|---|---|
.. | ||
LICENSE | 7 년 전 | |
Makefile | 7 년 전 | |
README.md | 7 년 전 | |
command.go | 7 년 전 | |
commands.go | 7 년 전 | |
doc.go | 7 년 전 | |
error.go | 7 년 전 | |
multi.go | 7 년 전 | |
parser.go | 7 년 전 | |
pipeline.go | 7 년 전 | |
pool.go | 7 년 전 | |
pubsub.go | 7 년 전 | |
rate_limit.go | 7 년 전 | |
redis.go | 7 년 전 | |
script.go | 7 년 전 | |
sentinel.go | 7 년 전 |
Supports:
API docs: http://godoc.org/gopkg.in/redis.v2. Examples: http://godoc.org/gopkg.in/redis.v2#pkg-examples.
Install:
go get gopkg.in/redis.v2
Some corner cases:
SORT list LIMIT 0 2 ASC
vals, err := client.Sort("list", redis.Sort{Offset: 0, Count: 2, Order: "ASC"}).Result()
ZRANGEBYSCORE zset -inf +inf WITHSCORES LIMIT 0 2
vals, err := client.ZRangeByScoreWithScores("zset", redis.ZRangeByScore{
Min: "-inf",
Max: "+inf",
Offset: 0,
Count: 2,
}).Result()
ZINTERSTORE out 2 zset1 zset2 WEIGHTS 2 3 AGGREGATE SUM
vals, err := client.ZInterStore("out", redis.ZStore{Weights: []int64{2, 3}}, "zset1", "zset2").Result()
EVAL "return {KEYS[1],ARGV[1]}" 1 "key" "hello"
vals, err := client.Eval("return {KEYS[1],ARGV[1]}", []string{"key"}, []string{"hello"}).Result()