Update readme.

This commit is contained in:
Vladimir Mihailenco 2016-10-09 11:51:21 +00:00
parent cb3f27133f
commit 0c5e085895
1 changed files with 12 additions and 12 deletions

View File

@ -3,26 +3,26 @@
Supports: Supports:
- Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC. - Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC.
- [Pub/Sub](http://godoc.org/gopkg.in/redis.v4#PubSub). - [Pub/Sub](http://godoc.org/gopkg.in/redis.v5#PubSub).
- [Transactions](http://godoc.org/gopkg.in/redis.v4#Multi). - [Transactions](http://godoc.org/gopkg.in/redis.v5#Multi).
- [Pipelining](http://godoc.org/gopkg.in/redis.v4#Client.Pipeline). - [Pipelining](http://godoc.org/gopkg.in/redis.v5#Client.Pipeline).
- [Scripting](http://godoc.org/gopkg.in/redis.v4#Script). - [Scripting](http://godoc.org/gopkg.in/redis.v5#Script).
- [Timeouts](http://godoc.org/gopkg.in/redis.v4#Options). - [Timeouts](http://godoc.org/gopkg.in/redis.v5#Options).
- [Redis Sentinel](http://godoc.org/gopkg.in/redis.v4#NewFailoverClient). - [Redis Sentinel](http://godoc.org/gopkg.in/redis.v5#NewFailoverClient).
- [Redis Cluster](http://godoc.org/gopkg.in/redis.v4#NewClusterClient). - [Redis Cluster](http://godoc.org/gopkg.in/redis.v5#NewClusterClient).
- [Ring](http://godoc.org/gopkg.in/redis.v4#NewRing). - [Ring](http://godoc.org/gopkg.in/redis.v5#NewRing).
- [Cache friendly](https://github.com/go-redis/cache). - [Cache friendly](https://github.com/go-redis/cache).
- [Rate limiting](https://github.com/go-redis/rate). - [Rate limiting](https://github.com/go-redis/rate).
- [Distributed Locks](https://github.com/bsm/redis-lock). - [Distributed Locks](https://github.com/bsm/redis-lock).
API docs: http://godoc.org/gopkg.in/redis.v4. API docs: http://godoc.org/gopkg.in/redis.v5.
Examples: http://godoc.org/gopkg.in/redis.v4#pkg-examples. Examples: http://godoc.org/gopkg.in/redis.v5#pkg-examples.
## Installation ## Installation
Install: Install:
go get gopkg.in/redis.v4 go get gopkg.in/redis.v5
## Quickstart ## Quickstart
@ -66,7 +66,7 @@ func ExampleClient() {
## Howto ## Howto
Please go through [examples](http://godoc.org/gopkg.in/redis.v4#pkg-examples) to get an idea how to use this package. Please go through [examples](http://godoc.org/gopkg.in/redis.v5#pkg-examples) to get an idea how to use this package.
## Look and feel ## Look and feel