summaryrefslogtreecommitdiffstats
path: root/pym/cache
Commit message (Expand)AuthorAgeFilesLines
* Make it easy to pass alternative cache implementations into the constructor a...Zac Medico2006-06-201-1/+2
* Use get() to simplify setitem logic as suggested by Brian Harring.Zac Medico2006-06-201-12/+10
* Implement get() as part of the standard mapping interface.Zac Medico2006-06-201-0/+6
* Fix it so that values are properly saved in the writable layer. Previously t...Zac Medico2006-06-201-1/+3
* make elog mail module always set the 'From' header for rfc2822 complianceMarius Mauch2006-06-1010-10/+10
* Use iteritems() instead of items() because an iterator uses less memory.Zac Medico2006-05-141-1/+1
* Write raw bytes instead of attempting to encode as utf-8 for bug #133287.Zac Medico2006-05-141-1/+1
* Fix a potential NameError due to 'cpv' being undefined in the namespace and a...Zac Medico2006-05-071-3/+5
* Properly encode metadata strings as utf-8 in order to avoid "UnicodeEncodeErr...Zac Medico2006-05-071-1/+1
* Replace inappropriate use of writelines with normal write.Zac Medico2006-05-071-1/+1
* Remove the uppercase requirement on flat_hash metadata keys so that _eclasses...Zac Medico2006-05-061-3/+1
* Catch an uncaught CacheCorruption for the traceback from bug #126692.Zac Medico2006-05-031-1/+7
* Add a new sqlite cache module (one I wrote) that has acceptable performance.Zac Medico2006-05-011-0/+237
* Remove sqlite.py because it's performance is unacceptable and it is therefore...Zac Medico2006-05-011-67/+0
* Fix some minor issues with the anydbm cache module. Thanks to Halcyon for rep...Zac Medico2006-04-081-3/+3
* Prevent an IOError with errno != ENOENT from being swallowed in flat_hash._se...Zac Medico2006-03-181-5/+5
* Replace hard coded number 2 in cache modules with errno.ENOENT.Zac Medico2006-03-182-11/+7
* Fix misuse of dict.fromkeys class method so that cache cleansing works during...Zac Medico2006-03-121-1/+1
* Use rstrip("\n") instead of -1 index to safely remove newline characters.Zac Medico2006-02-261-1/+1
* Add a new cache.metadata_overlay module that layers a writable cache over a r...Zac Medico2006-02-261-0/+91
* Only write known keys in flat_hash cache entries (filter out UNUSED_* keys).Zac Medico2006-02-261-1/+1
* Fix cache.metadata.database so that it correctly removes the newline characte...Zac Medico2006-02-261-1/+1
* Make complete_eclass_entries variable name consistent so that classes derived...Zac Medico2006-02-261-1/+1
* removed unnecessary reconstruct_eclasses importBrian Harring2005-12-181-1/+0
* couple of tweaks. fixed up whitespacing for template, added a default __cont...Brian Harring2005-12-182-20/+10
* Unpack the _eclasses_ value as it's packed by the database template's __setit...Jason Stubbs2005-12-171-1/+5
* replacement cache subsystem that's gestated in 2.1 and 3.0.Brian Harring2005-11-0512-0/+1240