|
|
8 years ago | |
|---|---|---|
| .. | ||
| LICENSE | 8 years ago | |
| Makefile | 8 years ago | |
| README.md | 8 years ago | |
| command.go | 8 years ago | |
| commands.go | 8 years ago | |
| doc.go | 8 years ago | |
| error.go | 8 years ago | |
| multi.go | 8 years ago | |
| parser.go | 8 years ago | |
| pipeline.go | 8 years ago | |
| pool.go | 8 years ago | |
| pubsub.go | 8 years ago | |
| rate_limit.go | 8 years ago | |
| redis.go | 8 years ago | |
| script.go | 8 years ago | |
| sentinel.go | 8 years ago | |

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()