summaryrefslogtreecommitdiffstats
path: root/pym/cache
Commit message (Collapse)AuthorAgeFilesLines
* Make it easy to pass alternative cache implementations into the constructor ↵Zac Medico2006-06-201-1/+2
| | | | | | as suggested by Brian Harring. svn path=/main/trunk/; revision=3547
* Use get() to simplify setitem logic as suggested by Brian Harring.Zac Medico2006-06-201-12/+10
| | | | svn path=/main/trunk/; revision=3546
* Implement get() as part of the standard mapping interface.Zac Medico2006-06-201-0/+6
| | | | svn path=/main/trunk/; revision=3545
* Fix it so that values are properly saved in the writable layer. Previously ↵Zac Medico2006-06-201-1/+3
| | | | | | they've been discarded, leading to regen on each access (only in cases where the user has altered an ebuild in the $PORTDIR). svn path=/main/trunk/; revision=3544
* make elog mail module always set the 'From' header for rfc2822 complianceMarius Mauch2006-06-1010-10/+10
| | | | svn path=/main/trunk/; revision=3483
* Use iteritems() instead of items() because an iterator uses less memory.Zac Medico2006-05-141-1/+1
| | | | svn path=/main/trunk/; revision=3350
* Write raw bytes instead of attempting to encode as utf-8 for bug #133287.Zac Medico2006-05-141-1/+1
| | | | svn path=/main/trunk/; revision=3349
* Fix a potential NameError due to 'cpv' being undefined in the namespace and ↵Zac Medico2006-05-071-3/+5
| | | | | | also fix a potential AttributeError due to an attempt to call reconstruct_eclasses() on a dict object that has already been reconstructed in flat_hash.database._parse_data(). svn path=/main/trunk/; revision=3329
* Properly encode metadata strings as utf-8 in order to avoid ↵Zac Medico2006-05-071-1/+1
| | | | | | | | "UnicodeEncodeError: 'ascii' codec can't encode character" exception when given a unicode string. svn path=/main/trunk/; revision=3328
* Replace inappropriate use of writelines with normal write.Zac Medico2006-05-071-1/+1
| | | | svn path=/main/trunk/; revision=3327
* Remove the uppercase requirement on flat_hash metadata keys so that ↵Zac Medico2006-05-061-3/+1
| | | | | | _eclasses_ will work. This is equivalent to the patch by Brian Harring that went into 2.0.54-r2 for forward compatibility with planned changes in the rsync metadata cache. svn path=/main/trunk/; revision=3323
* Catch an uncaught CacheCorruption for the traceback from bug #126692.Zac Medico2006-05-031-1/+7
| | | | svn path=/main/trunk/; revision=3313
* 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
* Fix some minor issues with the anydbm cache module. Thanks to Halcyon for ↵Zac Medico2006-04-081-3/+3
| | | | | | reporting. svn path=/main/trunk/; revision=3097
* Prevent an IOError with errno != ENOENT from being swallowed in ↵Zac Medico2006-03-181-5/+5
| | | | | | flat_hash._setitem(). svn path=/main/trunk/; revision=2944
* Replace hard coded number 2 in cache modules with errno.ENOENT.Zac Medico2006-03-182-11/+7
| | | | svn path=/main/trunk/; revision=2938
* Fix misuse of dict.fromkeys class method so that cache cleansing works ↵Zac Medico2006-03-121-1/+1
| | | | | | during `emerge --metadata` runs. svn path=/main/trunk/; revision=2861
* Use rstrip("\n") instead of -1 index to safely remove newline characters.Zac Medico2006-02-261-1/+1
| | | | svn path=/main/trunk/; revision=2793
* Add a new cache.metadata_overlay module that layers a writable cache over a ↵Zac Medico2006-02-261-0/+91
| | | | | | readonly cache. svn path=/main/trunk/; revision=2792
* Only write known keys in flat_hash cache entries (filter out UNUSED_* keys).Zac Medico2006-02-261-1/+1
| | | | svn path=/main/trunk/; revision=2787
* Fix cache.metadata.database so that it correctly removes the newline ↵Zac Medico2006-02-261-1/+1
| | | | | | character from the end of the line when parsing flat_hash entries. svn path=/main/trunk/; revision=2786
* Make complete_eclass_entries variable name consistent so that classes ↵Zac Medico2006-02-261-1/+1
| | | | | | derived from cache.template.database are compatible with the mirror_cache() function in the cache.util module. svn path=/main/trunk/; revision=2785
* removed unnecessary reconstruct_eclasses importBrian Harring2005-12-181-1/+0
| | | | svn path=/main/trunk/; revision=2397
* couple of tweaks. fixed up whitespacing for template, added a default ↵Brian Harring2005-12-182-20/+10
| | | | | | | | | | | __contains__ func to the template, finally added serialize_eclasses class attribute; controls whether __(get|set)item__ do _eclasses_ mangling on their own, or leave it to the child class. updated anydbm to handle serializing itself svn path=/main/trunk/; revision=2395
* Unpack the _eclasses_ value as it's packed by the database template's ↵Jason Stubbs2005-12-171-1/+5
| | | | | | __setitem__ method. svn path=/main/trunk/; revision=2393
* replacement cache subsystem that's gestated in 2.1 and 3.0.Brian Harring2005-11-0512-0/+1240
it rocks your world, baby. svn path=/main/branches/2.0/; revision=2257