django1/django/core/cache/backends
Hajime Nakagami 8f75984c26 Quoted field names in cache db backend SQL.
On Firebird, 'value' is a reserved word and must be quoted.
2018-03-13 22:46:41 -04:00
..
__init__.py Refactored cache from django/core/cache.py into django/core/cache package, with each backend getting a separate module. This keeps things cleaner and uses less memory, because the backend module is only loaded if it's needed. 2006-02-24 06:07:01 +00:00
base.py Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is a callable that returns None. 2017-10-10 09:20:34 -04:00
db.py Quoted field names in cache db backend SQL. 2018-03-13 22:46:41 -04:00
dummy.py Refs #23919 -- Replaced super() calls for old-style classes. 2017-12-07 09:10:32 -05:00
filebased.py Refs #27795 -- Replaced force_bytes() usage in django.core.cache. 2018-02-02 08:57:58 +01:00
locmem.py Fixed #28977 -- Changed local-memory cache to use LRU culling. 2018-01-24 12:26:19 -05:00
memcached.py Refs #20892 -- Removed support for passing pylibmc behavior settings as top-level attributes of CACHES['OPTIONS']. 2017-09-22 12:51:17 -04:00