From 9194085d0c0bbcc7c1dfeb63c79af85ce7242ec2 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Mon, 22 May 2017 14:28:22 -0700 Subject: [PATCH] a note about connection pooling --- README.rst | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ce46255..cc54993 100644 --- a/README.rst +++ b/README.rst @@ -18,6 +18,8 @@ Three main purposes: Not currently a connection pool, because it doesn’t keep any connections open. Should be possible to implement connection pooling without changing the API. +However, testing suggests there would be no appreciable performance gain from +connection pooling. Usage Example ~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 29b1dfd..77fa8ee 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import codecs setuptools.setup( name='doublethink', - version='0.2.0.dev80', + version='0.2.0.dev81', packages=['doublethink'], classifiers=[ 'Programming Language :: Python :: 2.7',