Type-safe Redis client for Golang
Go to file
Vladimir Mihailenco 3bea997988 all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
.travis.yml travis: add missing dependencies. 2013-12-30 13:48:16 +02:00
LICENSE Add license. Fixes #1. 2012-12-19 13:05:50 +02:00
Makefile all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
README.md all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
command.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
commands.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
doc.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
example_test.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
export_test.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
multi.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
parser.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
pipeline.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
pool.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
pubsub.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
redis.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
redis_test.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
script.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00

README.md

Redis client for Golang Build Status

Supports:

  • Redis 2.8 commands except QUIT, MONITOR, SLOWLOG and SYNC.
  • Pub/sub.
  • Transactions.
  • Pipelining.
  • Connection pool.
  • TLS connections.
  • Thread safety.
  • Timeouts.

API docs: http://godoc.org/gopkg.in/redis.v1. Examples: http://godoc.org/gopkg.in/redis.v1#pkg-examples.

Installation

Install:

go get gopkg.in/redis.v1

Look and feel

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