index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
cache
/
backends
/
filebased.py
Age
Commit message (
Expand
)
Author
2019-02-08
Simplified FileBasedCache.clear().
Jon Dufresne
2019-01-31
Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=...
Jon Dufresne
2018-07-09
Fixed #29550 -- Eased overriding pickle.dumps() protocol in cache backends an...
Simon Charette
2018-07-09
Refs #27480 -- Moved FileBasedCache content writing logic to a method.
Simon Charette
2018-04-27
Fixed #27480 -- Added cache.touch().
Nicolas NoƩ
2018-02-02
Refs #27795 -- Replaced force_bytes() usage in django.core.cache.
Jon Dufresne
2017-09-07
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
Tim Graham
2017-09-03
Fixed #28500 -- Fixed crash in FileBasedCache._is_expired() if the cache file...
caleb logan
2017-06-28
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
Mads Jensen
2017-02-21
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.
Tim Graham
2017-01-18
Refs #23919 -- Replaced io.open() with open().
Aymeric Augustin
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2016-06-01
Fixed #26694 -- Made FileBasedCache.get() reraise non-ENOENT IOErrors.
Jon Dufresne
2016-05-31
Fixed #26691 -- Removed checking for a file's existence before deleting.
Jon Dufresne
2015-11-14
Refs #25501 -- Fixed a typo in django/core/cache/backends/filebased.py
Jaap Roes
2015-10-20
Fixed #25501 -- Made the file-based cache backend use the highest pickling pr...
Andrew Artajos
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-10-10
Fixed #23625 -- Removed CacheClass shim
Jaap Roes
2013-11-07
Fixed a couple flake8 warnings.
Tim Graham
2013-11-07
Fixed #20536 -- rewrite of the file based cache backend
Jaap Roes
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-10-24
Start attacking E231 violations
Alex Gaynor
2013-10-01
Fixed #21147 -- Avoided time.time precision issue with cache backends.
Michael Manfre
2013-05-18
Fixed #9595 -- Allow non-expiring cache timeouts.
Jacob Burch
2012-08-29
Replaced many smart_bytes by force_bytes
Claude Paroz
2012-08-12
[py3] Encoded value before feeding it to hashlib.md5
Claude Paroz
2012-07-22
[py3] Switched to Python 3-compatible imports.
Aymeric Augustin
2012-05-05
Made more extensive usage of context managers with open.
Claude Paroz
2011-03-28
Removed a bunch of Python 2.4 workarounds now that we don't support it. Refs ...
Adrian Holovaty
2010-12-21
Fixed #11675 -- Added support for the PyLibMC cache library. In order to supp...
Russell Keith-Magee
2010-11-19
Fixed #13795 -- Added a site-wide cache prefix and cache versioning. Thanks t...
Russell Keith-Magee
2010-11-02
Fixed #14596 -- Light refactoring of the cache backends.
Russell Keith-Magee
2010-09-12
Add warning when using cache keys that might not work with memcached.
Malcolm Tredinnick
2010-09-10
Fixed #14250 - FileBasedCacheTests.test_cull test failure
Luke Plant
2010-04-16
Fixed #13357 -- Minor changes to get Django running under PyPy. Thanks to Ale...
Russell Keith-Magee
2010-01-27
Fixed #12671 -- Added set_many(), get_many(), and clear() methods to the cach...
Russell Keith-Magee
2010-01-10
Changed a whole bunch of places to raise exception instances instead of old-s...
Adrian Holovaty
2008-08-10
Added a return value to the add() method for caches. It's now possible to tell
Malcolm Tredinnick
2008-08-02
Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...
Gary Wilson Jr
2007-12-04
Fixed #6099: the filebased cache backend now uses md5 hashes of keys instead ...
Jacob Kaplan-Moss
2007-12-02
Fixed #6086 -- Deprecate the "simple" cache backend in favour of "locmem".
Malcolm Tredinnick
2007-10-20
Fixed #4831 -- Added an "add" cache key method, for parity with memcached's
Malcolm Tredinnick
2007-07-16
Fixed #4845 -- Fixed some problems with Unicode usage and caching. Thanks,
Malcolm Tredinnick
2006-02-24
Refactored cache from django/core/cache.py into django/core/cache package, wi...
Adrian Holovaty