summaryrefslogtreecommitdiff
path: root/test/perf/threaded_compile.py
Commit message (Collapse)AuthorAgeFilesLines
* no need for all these scripts, not worth maintainingMike Bayer2013-04-281-75/+0
|
* - the raw 2to3 runMike Bayer2013-04-271-11/+11
| | | | - went through examples/ and cleaned out excess list() calls
* - The official name for the relation() function is nowMike Bayer2010-03-171-1/+1
| | | | | | relationship(), to eliminate confusion over the relational algebra term. relation() however will remain available in equal capacity for the foreseeable future. [ticket:1740]
* misc cleanups in tests (courtesy of Michael Bayer's revisiting of myGaëtan de Menten2010-02-131-1/+0
| | | | patch)
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-9/+8
| | | | | | - 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-0/+3
| | | | maintenance branch in branches/rel_0_3.
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-061-1/+1
| | | | | - Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation
* - added synchronization to the mapper() construction step, to avoidMike Bayer2007-06-201-33/+37
| | | | | thread collections when pre-existing mappers are compiling in a different thread [ticket:613]
* - added a mutex to the mapper compilation step. ive been reluctant to add ↵Mike Bayer2007-01-061-0/+70
any kind of threading anything to SA but this is one spot that its its really needed since mappers are typically "global", and while their state does not change during normal operation, the initial compilation step does modify internal state significantly, and this step usually occurs not at module-level initialization time (unless you call compile()) but at first-request time - added "compile_mappers()" function as a shortcut to compiling all mappers