This website requires JavaScript.
Explore
Help
Sign In
innov
/
django1
Watch
1
Star
0
Fork
You've already forked django1
0
Code
Issues
Pull Requests
1
Projects
Releases
Wiki
Activity
407c1249c9
django1
/
django
/
core
/
cache
/
backends
History
Sergey Fedoseev
3633c2a045
Used dict comprehensions in BaseMemcachedCache.get_many() and set_many() for better readability.
2017-09-05 09:14: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
#28397
-- Removed django.core.exceptions.DjangoRuntimeWarning.
2017-07-14 12:06:06 -04:00
db.py
Fixed
#28370
-- Deprecated the context arg of Field.from_db_value() and Expression.convert_value().
2017-07-20 16:30:08 -04:00
dummy.py
Sorted imports with isort; refs
#23860
.
2015-02-06 08:16:28 -05:00
filebased.py
Fixed
#28500
-- Fixed crash in FileBasedCache._is_expired() if the cache file is empty.
2017-09-03 20:11:49 -04:00
locmem.py
Fixed
#27818
-- Replaced try/except/pass with contextlib.suppress().
2017-06-28 14:07:55 -04:00
memcached.py
Used dict comprehensions in BaseMemcachedCache.get_many() and set_many() for better readability.
2017-09-05 09:14:41 -04:00