1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Update README.md to use redis.v4 documentation

This changes the links from redis.v3 documentation to redis.v4 documentation.
This commit is contained in:
Tux
2016-05-25 11:32:13 -06:00
parent c0622ff8dc
commit ae84839829

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.v3#PubSub). - [Pub/Sub](http://godoc.org/gopkg.in/redis.v4#PubSub).
- [Transactions](http://godoc.org/gopkg.in/redis.v3#Multi). - [Transactions](http://godoc.org/gopkg.in/redis.v4#Multi).
- [Pipelining](http://godoc.org/gopkg.in/redis.v3#Client.Pipeline). - [Pipelining](http://godoc.org/gopkg.in/redis.v4#Client.Pipeline).
- [Scripting](http://godoc.org/gopkg.in/redis.v3#Script). - [Scripting](http://godoc.org/gopkg.in/redis.v4#Script).
- [Timeouts](http://godoc.org/gopkg.in/redis.v3#Options). - [Timeouts](http://godoc.org/gopkg.in/redis.v4#Options).
- [Redis Sentinel](http://godoc.org/gopkg.in/redis.v3#NewFailoverClient). - [Redis Sentinel](http://godoc.org/gopkg.in/redis.v4#NewFailoverClient).
- [Redis Cluster](http://godoc.org/gopkg.in/redis.v3#NewClusterClient). - [Redis Cluster](http://godoc.org/gopkg.in/redis.v4#NewClusterClient).
- [Ring](http://godoc.org/gopkg.in/redis.v3#NewRing). - [Ring](http://godoc.org/gopkg.in/redis.v4#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.v3. API docs: http://godoc.org/gopkg.in/redis.v4.
Examples: http://godoc.org/gopkg.in/redis.v3#pkg-examples. Examples: http://godoc.org/gopkg.in/redis.v4#pkg-examples.
## Installation ## Installation
Install: Install:
go get gopkg.in/redis.v3 go get gopkg.in/redis.v4
## Quickstart ## Quickstart
@ -66,7 +66,7 @@ func ExampleClient() {
## Howto ## Howto
Please go through [examples](http://godoc.org/gopkg.in/redis.v3#pkg-examples) to get an idea how to use this package. Please go through [examples](http://godoc.org/gopkg.in/redis.v4#pkg-examples) to get an idea how to use this package.
## Look and feel ## Look and feel