summaryrefslogtreecommitdiffstats
path: root/pym/cache/sqlite.py
Commit message (Collapse)AuthorAgeFilesLines
* For bug #159518, increase the "database is locked" timeout.Zac Medico2006-12-311-1/+7
| | | | svn path=/main/trunk/; revision=5434
* Reverse the relationship between __contains__ and has_key in all cache ↵Zac Medico2006-10-261-1/+1
| | | | | | classes since python handles the "in" operator more efficiently than a has_key method call. svn path=/main/trunk/; revision=4821
* Don't use LazyLoad for cache pulls because it causes a race condition.Zac Medico2006-09-221-11/+1
| | | | svn path=/main/trunk/; revision=4503
* Allow cache.sqlite to use sqlite3 from python-2.5, if available.Zac Medico2006-09-221-1/+4
| | | | svn path=/main/trunk/; revision=4498
* Replace relative imports with absolute imports for forward compatibility ↵Zac Medico2006-09-181-4/+4
| | | | | | with python 2.6. svn path=/main/trunk/; revision=4470
* Add a new sqlite cache module (one I wrote) that has acceptable performance.Zac Medico2006-05-011-0/+237
| | | | svn path=/main/trunk/; revision=3299
* Remove sqlite.py because it's performance is unacceptable and it is ↵Zac Medico2006-05-011-67/+0
| | | | | | therefore useless. svn path=/main/trunk/; revision=3298
* replacement cache subsystem that's gestated in 2.1 and 3.0.Brian Harring2005-11-051-0/+67
it rocks your world, baby. svn path=/main/branches/2.0/; revision=2257