From 58e025e48bf97061c9f2638564fd6857092caeb4 Mon Sep 17 00:00:00 2001 From: silenceper Date: Wed, 14 Oct 2020 10:35:17 +0800 Subject: [PATCH] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 051bfff..325f4d0 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,10 @@ A golang universal network connection pool. ## Feature: -- The connection type in the connection pool is `interface{}`, making it more versatile -- The connection supports setting the maximum idle time, the timeout connection will be closed and discarded, which can avoid the problem of automatic connection failure when idle -  +- More versatile, The connection type in the connection pool is `interface{}`, making it more versatile +- More configurable, The connection supports setting the maximum idle time, the timeout connection will be closed and discarded, which can avoid the problem of automatic connection failure when idle - Support user setting `ping` method, used to check the connectivity of connection, invalid connection will be discarded -- When the connection pool is full, support for connection waiting (like the go db connection pool) +- Support connection waiting, When the connection pool is full, support for connection waiting (like the go db connection pool) ## Basic Usage: