summaryrefslogtreecommitdiff
path: root/test/perf/poolload.py
Commit message (Collapse)AuthorAgeFilesLines
* - remove old perf/ tests from pre-2007Mike Bayer2011-01-161-37/+0
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-1/+1
|
* merge 0.6 series to trunk.Mike Bayer2009-08-061-2/+1
|
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-6/+6
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-2/+3
| | | | maintenance branch in branches/rel_0_3.
* - a new mutex that was added in 0.3.9 causes the pool_timeoutMike Bayer2007-07-201-22/+23
| | | | | | | feature to fail during a race condition; threads would raise TimeoutError immediately with no delay if many threads push the pool into overflow at the same time. this issue has been fixed.
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-061-2/+2
| | | | | - Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation
* adjustments to pool stemming from changes made for [ticket:224].Mike Bayer2006-08-041-0/+36
overflow counter should only be decremented if the connection actually succeeded. added a test script to attempt testing this.