1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-17 20:17:02 +03:00

readme: Add note about connection pool.

This commit is contained in:
Vladimir Mihailenco 2012-07-29 12:54:09 +03:00
parent 9d06871d6e
commit 2f284d75b8

View File

@ -171,6 +171,7 @@ Immediate command:
func Quit(client *redis.Client) *redis.StatusReq {
req := redis.NewStatusReq("QUIT")
client.Run(req)
client.Close()
return req
}
@ -178,3 +179,8 @@ Immediate command:
if err != nil {
panic(err)
}
Connection pool
---------------
Client does not support connection pool.