forked from mirror/redis
Update readme.
This commit is contained in:
parent
9556378547
commit
3eb7c87040
23
README.md
23
README.md
|
@ -1,22 +1,23 @@
|
||||||
# Redis client for Golang [![Build Status](https://travis-ci.org/go-redis/redis.png?branch=master)](https://travis-ci.org/go-redis/redis)
|
# Redis client for Golang [![Build Status](https://travis-ci.org/go-redis/redis.png?branch=v5)](https://travis-ci.org/go-redis/redis)
|
||||||
|
|
||||||
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.v5#PubSub).
|
- [Pub/Sub](https://godoc.org/gopkg.in/redis.v5#PubSub).
|
||||||
- [Transactions](http://godoc.org/gopkg.in/redis.v5#Multi).
|
- [Transactions](https://godoc.org/gopkg.in/redis.v5#Multi).
|
||||||
- [Pipeline](https://godoc.org/gopkg.in/redis.v5#example-Client-Pipeline) and [TxPipeline](https://godoc.org/gopkg.in/redis.v5#example-Client-TxPipeline).
|
- [Pipeline](https://godoc.org/gopkg.in/redis.v5#example-Client-Pipeline) and [TxPipeline](https://godoc.org/gopkg.in/redis.v5#example-Client-TxPipeline).
|
||||||
- [Scripting](http://godoc.org/gopkg.in/redis.v5#Script).
|
- [Scripting](https://godoc.org/gopkg.in/redis.v5#Script).
|
||||||
- [Timeouts](http://godoc.org/gopkg.in/redis.v5#Options).
|
- [Timeouts](https://godoc.org/gopkg.in/redis.v5#Options).
|
||||||
- [Redis Sentinel](http://godoc.org/gopkg.in/redis.v5#NewFailoverClient).
|
- [Redis Sentinel](https://godoc.org/gopkg.in/redis.v5#NewFailoverClient).
|
||||||
- [Redis Cluster](http://godoc.org/gopkg.in/redis.v5#NewClusterClient).
|
- [Redis Cluster](https://godoc.org/gopkg.in/redis.v5#NewClusterClient).
|
||||||
- [Ring](http://godoc.org/gopkg.in/redis.v5#NewRing).
|
- [Ring](https://godoc.org/gopkg.in/redis.v5#NewRing).
|
||||||
|
- [Instrumentation](https://godoc.org/gopkg.in/redis.v5#ex-package--Instrumentation).
|
||||||
- [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.v5.
|
API docs: https://godoc.org/gopkg.in/redis.v5.
|
||||||
Examples: http://godoc.org/gopkg.in/redis.v5#pkg-examples.
|
Examples: https://godoc.org/gopkg.in/redis.v5#pkg-examples.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
@ -74,7 +75,7 @@ func ExampleClient() {
|
||||||
|
|
||||||
## Howto
|
## Howto
|
||||||
|
|
||||||
Please go through [examples](http://godoc.org/gopkg.in/redis.v5#pkg-examples) to get an idea how to use this package.
|
Please go through [examples](https://godoc.org/gopkg.in/redis.v5#pkg-examples) to get an idea how to use this package.
|
||||||
|
|
||||||
## Look and feel
|
## Look and feel
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue