Type-safe Redis client for Golang
Go to file
Vladimir Mihailenco 716ecc313b travis: don't test on tip (it is broken). 2015-05-14 16:14:25 +03:00
.test Add Redis Cluster support. 2015-03-19 11:19:55 +02:00
.gitignore Add Redis Cluster support. 2015-03-19 11:19:55 +02:00
.travis.yml travis: don't test on tip (it is broken). 2015-05-14 16:14:25 +03:00
LICENSE Add license. Fixes #1. 2012-12-19 13:05:50 +02:00
Makefile Add Redis Cluster support. 2015-03-19 11:19:55 +02:00
README.md Add link to the redis cluster. 2015-01-13 12:36:49 +02:00
cluster.go cluster: user ClusterInfo instead of Ping to find live node. 2015-05-13 12:38:34 +03:00
cluster_client_test.go Reload slots in background goroutine. 2015-05-01 14:22:49 +03:00
cluster_pipeline.go Reload slots in background goroutine. 2015-05-01 14:22:49 +03:00
cluster_test.go sentine: don't pass DB and Password to Sentinel client. 2015-05-14 16:13:45 +03:00
command.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
command_test.go Remove deprecated funcs. 2015-05-02 16:22:06 +03:00
commands.go Use time.Duration to specify timeout. 2015-04-13 09:48:40 +03:00
commands_test.go sentine: don't pass DB and Password to Sentinel client. 2015-05-14 16:13:45 +03:00
conn.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
crc16.go Add Redis Cluster support. 2015-03-19 11:19:55 +02:00
crc16_test.go Add Redis Cluster support. 2015-03-19 11:19:55 +02:00
doc.go doc: fix outdated reference. 2014-10-07 09:27:55 +03:00
error.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
example_test.go Remove deprecated funcs. 2015-05-02 16:22:06 +03:00
export_test.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
main_test.go sentine: don't pass DB and Password to Sentinel client. 2015-05-14 16:13:45 +03:00
multi.go Simplify internal API 2015-04-17 14:18:44 +01:00
multi_test.go Remove deprecated funcs. 2015-05-02 16:22:06 +03:00
parser.go Add Redis Cluster support. 2015-03-19 11:19:55 +02:00
parser_test.go More benchmarks. 2014-07-04 15:19:45 +03:00
pipeline.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
pipeline_test.go Remove deprecated funcs. 2015-05-02 16:22:06 +03:00
pool.go Merge pull request #101 from go-redis/feature/auto-retry-and-max-retries 2015-05-14 15:11:40 +03:00
pool_test.go Fix pool to close all connections when client is closed. 2015-05-05 12:17:44 +03:00
pubsub.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
pubsub_test.go Remove deprecated funcs. 2015-05-02 16:22:06 +03:00
redis.go Add auto-retry and MaxRetries option. Fixes #84. 2015-05-10 17:02:47 +03:00
redis_test.go sentine: don't pass DB and Password to Sentinel client. 2015-05-14 16:13:45 +03:00
script.go all: switch to gopkg.in. 2014-05-11 10:44:22 +03:00
sentinel.go sentine: don't pass DB and Password to Sentinel client. 2015-05-14 16:13:45 +03:00
sentinel_test.go sentine: don't pass DB and Password to Sentinel client. 2015-05-14 16:13:45 +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.
  • Redis Sentinel.
  • Redis Cluster: https://github.com/bsm/redis-cluster.

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

Installation

Install:

go get gopkg.in/redis.v2

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