summaryrefslogtreecommitdiff
path: root/happybase/pool.py
Commit message (Collapse)AuthorAgeFilesLines
* Use range() instead of xrange()Wouter Bolsterlee2016-07-271-2/+2
|
* Use Python 3 compatible 'queue' importWouter Bolsterlee2016-07-271-3/+4
|
* Port to thriftpyWouter Bolsterlee2016-03-271-1/+1
|
* Use 'argument' instead of 'parameter' in docstringsWouter Bolsterlee2014-01-251-1/+1
|
* Rewrite connection pool exception handlingWouter Bolsterlee2013-06-041-82/+35
| | | | | | | | | | | | The connection pool now uses a much simpler try/except/finally block in the context manager function to detect network/Thrift errors. The pool will now only refreshes connections when Thrift or socket errors occur, and will not react to unrelated application errors anymore. With this approach, the _ClientProxy hack is not needed anymore, so it has been completely eliminated. See issue #25.
* Add connection pool docs to the user guideWouter Bolsterlee2013-05-241-44/+4
|
* Rename internal connection pool methodWouter Bolsterlee2013-05-241-3/+3
|
* Fix typo in connection pool API docsWouter Bolsterlee2013-05-211-1/+1
|
* Add 'versionadded' markup to docsWouter Bolsterlee2013-05-201-0/+4
|
* Add thread-safe connection poolWouter Bolsterlee2013-05-201-0/+240
See issue #21.