mongo-python-driver/doc
Mike Dirolf 826fb0d4db Simplification of connection pooling.
Makes driver ~2x faster for simple benchmarks.

DEPRECATED pool_size, auto_start_request and timeout parameters to Connection
DEPRECATED Connection.start_request

Each thread now gets it's own socket reserved on it's first operation. Those
sockets are held until Connection.end_request is called by that thread, or
Connection.disconnect is called by any thread, or the thread dies.

Calling Connection.end_request allows the socket to be returned to the pool,
and to be used by other threads instead of creating a new socket. Judicious use
of this method is important for applications with many threads or with long
running threads that make few calls to PyMongo operations.
2010-01-08 15:13:50 -05:00
..
api Simplification of connection pooling. 2010-01-08 15:13:50 -05:00
examples minor: fix doctest 2009-12-09 18:51:29 -05:00
changelog.rst BUMP 1.3 see changelog 2009-12-16 11:29:10 -05:00
conf.py use doctest to test a bunch of docstrings - most importantly the tutorial and M/R example 2009-12-09 16:40:25 -05:00
contributors.rst added Gregg Lind to contributors list 2009-12-08 05:58:10 +08:00
faq.rst Simplification of connection pooling. 2010-01-08 15:13:50 -05:00
index.rst minor: move about section down 2009-12-09 14:50:49 -05:00
installation.rst clean up links / references 2009-11-13 17:34:50 -05:00
make.bat API doc generation with Sphinx 2009-11-12 16:46:49 -05:00
Makefile API doc generation with Sphinx 2009-11-12 16:46:49 -05:00
tools.rst adding mango to django FAQ / tools list. trying to bring some sanity to tools list w/o kicking any projects out 2009-12-29 12:28:41 -05:00
tutorial.rst use doctest to test a bunch of docstrings - most importantly the tutorial and M/R example 2009-12-09 16:40:25 -05:00