summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/db.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+0
* Refs #32365 -- Removed internal uses of utils.timezone.utc alias.Carlton Gibson2022-03-241-5/+5
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-62/+83
* Fixed #33340 -- Fixed unquoted column names in queries used by DatabaseCache.Arsa2021-12-091-4/+10
* Fixed #33060 -- Added BaseCache.make_and_validate_key() hook.Nick Pope2021-09-071-21/+8
* Refs #33060 -- Ensured cache backends validate keys.Nick Pope2021-09-071-4/+7
* Fixed #32772 -- Made database cache count size once per set.Michael Lissner2021-05-261-6/+6
* Fixed #32366 -- Updated datetime module usage to recommended approach.Nick Pope2021-05-121-8/+3
* Fixed #32705 -- Prevented database cache backend from checking .rowcount on c...ecogels2021-05-051-1/+1
* Fixed #31728 -- Fixed cache culling when no key is found for deletion.Guillermo Bonvehí2020-06-221-3/+6
* Fixed #30759 -- Made cache.delete() return whether it succeeded.daniel a rios2019-11-141-2/+4
* Refs #28370 -- Removed support for the context arg of Field.from_db_value() a...Tim Graham2019-01-171-9/+2
* Fixed #29626, #29584 -- Added optimized versions of get_many() and delete_man...oliver2018-08-171-33/+53
* Fixed #29550 -- Eased overriding pickle.dumps() protocol in cache backends an...Simon Charette2018-07-091-1/+3
* Fixed #27480 -- Added cache.touch().Nicolas Noé2018-04-271-2/+18
* Quoted field names in cache db backend SQL.Hajime Nakagami2018-03-131-18/+57
* Refs #27795 -- Replaced force_bytes() usage in django.core.cache.Jon Dufresne2018-02-021-2/+1
* Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope2017-12-071-1/+1
* Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham2017-07-201-2/+9
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-5/+1
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-4/+2
* Refactored datetime handling in the database cache backend.Aymeric Augustin2015-05-171-43/+43
* Renamed value_to_db_xxx to adapt_xxxfield_value.Aymeric Augustin2015-05-171-3/+3
* Removed global timezone-aware datetime converters.Aymeric Augustin2015-05-171-0/+4
* Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer2015-02-201-0/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-7/+7
* Fixed #23625 -- Removed CacheClass shimJaap Roes2014-10-101-5/+0
* Ensure cursors are closed when no longer needed.Michael Manfre2014-02-021-64/+65
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+3
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+0
* Fixed #21147 -- Avoided time.time precision issue with cache backends.Michael Manfre2013-10-011-4/+3
* Fixed #21146 - DatabaseCache converts expires to python valueMichael Manfre2013-09-261-3/+18
* Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch2013-05-181-6/+9
* Made atomic usable when autocommit is off.Aymeric Augustin2013-03-131-1/+1
* Fixed #11569 -- Wrapped DatabaseCache._base_set in an atomic block.Aymeric Augustin2013-03-111-14/+15
* Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin2013-03-111-6/+1
* Fixed #19896 -- Committed after clearing cache in the database.George Song2013-02-241-0/+1
* Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette2013-02-051-1/+1
* Fixed #19273 -- Fixed DB cache backend on pg 9.0+ and py3Anssi Kääriäinen2012-11-101-4/+8
* Replaced many smart_bytes by force_bytesClaude Paroz2012-08-291-2/+2
* [py3] Fixed cache tests.Aymeric Augustin2012-08-181-1/+1
* [py3] Fixed more encoding issues in cache testsClaude Paroz2012-08-151-1/+2
* [py3] Avoided the deprecated base64 interface.Aymeric Augustin2012-08-141-2/+2
* [py3] Switched to Python 3-compatible imports.Aymeric Augustin2012-07-221-1/+1
* Fixed #18330 - Made cache culling 3rd party db backend friendlyAnssi Kääriäinen2012-07-051-11/+3
* Fixed #16378. Locmem now uses pickle.HIGHEST_PROTOCOL for better compatibilit...Paul McMillan2011-11-211-1/+2
* Made the database cache backend, which bypasses the ORM, compatible with time...Aymeric Augustin2011-11-201-15/+52
* Fixed a bunch of imports of the email stdlib module now that we are on Python...Jannis Leidel2011-09-091-1/+1
* Fixed #16481 -- Adapted one raw SQL query in cull immplementation of the data...Ramiro Morales2011-08-211-1/+7