mirror of https://github.com/go-redis/redis.git
Add custom command example.
This commit is contained in:
parent
9c5def7f1f
commit
5af57e5ca6
16
README.md
16
README.md
|
@ -122,3 +122,19 @@ Thread safety
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Client is thread safe. Internally sync.Mutex is used to synchronize writes and reads.
|
Client is thread safe. Internally sync.Mutex is used to synchronize writes and reads.
|
||||||
|
|
||||||
|
Custom commands
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
func Get(client *redis.Client, key string) *redis.BulkReq {
|
||||||
|
req := redis.NewBulkReq("GET", key)
|
||||||
|
client.Run(req)
|
||||||
|
return req
|
||||||
|
}
|
||||||
|
|
||||||
|
value, err := Get(redisClient).Reply()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue