From 2f284d75b8fca6a799f15a0a233bb85a2ced9ed0 Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Sun, 29 Jul 2012 12:54:09 +0300 Subject: [PATCH] readme: Add note about connection pool. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index ddd4a4b..6ee2397 100644 --- a/README.md +++ b/README.md @@ -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.