From 02e4506ffb515fcd00e83d1ec2331744acc4d269 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Tue, 10 Dec 2013 08:28:01 -0600 Subject: [PATCH] Update README.md for Go 1.2 Remove mention of Go's inability to have a maximum connection pool size as that issue has been resolved in Go 1.2. --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index fe4ea0a2..da2598f5 100644 --- a/README.md +++ b/README.md @@ -53,10 +53,7 @@ when using the bytea type). ### Explicit Connection Pool -Connection pool usage is explicit and configurable. The standard Go SQL -interface automatically uses a connection pool, and does not provide a way to -control the maximum number of connections (hopefully soon to change -- -https://code.google.com/p/go/issues/detail?id=4805). In pgx, a connection can +Connection pool usage is explicit and configurable. In pgx, a connection can be created and managed directly, or a connection pool with a configurable maximum connections can be used. Also, the connection pool offers an after connect hook that allows every connection to be automatically setup before