summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/locmem.py
AgeCommit message (Expand)Author
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-01-27Fixed #12671 -- Added set_many(), get_many(), and clear() methods to the cach...Russell Keith-Magee
2009-04-01Fixed #9644: fix a thread sync issue in the locmem cache. Thanks, mrts.Jacob Kaplan-Moss
2009-03-08Fixed #9626 -- Fixed a deletion race in the locmem cache.Malcolm Tredinnick
2008-08-10Added a return value to the add() method for caches. It's now possible to tellMalcolm Tredinnick
2008-07-26Fixed #6413 -- Fixed a deadlock situation in the locmem culling implementation.Malcolm Tredinnick
2007-12-11Fixe #6131 -- Fixed a problem with expired keys in the locmem cache. Based on...Malcolm Tredinnick
2007-12-02Fixed #6086 -- Deprecate the "simple" cache backend in favour of "locmem".Malcolm Tredinnick
2007-11-21Fixed #5981 -- Fixed failing regression test when using locmem cache backend....Gary Wilson Jr
2007-10-20Fixed #4831 -- Added an "add" cache key method, for parity with memcached'sMalcolm Tredinnick
2007-07-15Changed imports to adhere to PEP 8.Gary Wilson Jr
2007-07-15Fixed #3012 -- Changed the locmem cache backend to use pickle instead of deep...Gary Wilson Jr
2006-07-21Fixed a bunch of spurious imports, typos, and other small errors turned up by...Jacob Kaplan-Moss
2006-02-24Refactored cache from django/core/cache.py into django/core/cache package, wi...Adrian Holovaty