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
1 changed files with 6 additions and 0 deletions

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.