| Age | Commit message (Collapse) | Author |
|
DatabaseCache._cull implementation could fail if no key was found to
perform a deletion in the table. This prevented the new cache key/value
from being correctly added.
Backport of f386454d1302b66d0eb331ed0ae9e4811e2f3a15 from master
|
|
Backport of 926148ef019abcac3a9988c78734d9336d69f24e from master
|
|
backends.
|
|
Case missed in a415ce70bef6d91036b00dd2c8544aed7aeeaaed.
|
|
Thanks Simon Charette for the review.
|
|
Removed usage of urllib.quote(), unnecessary since cbbe60c7fc39fa8ff75554bd90104eaad6924bb1.
Used hasher's .update() on key fragments.
|
|
|
|
if None is cached.
|
|
glob.glob1() ignores missing paths.
|
|
exist_ok=True).
|
|
and Expression.convert_value().
Per deprecation timeline.
|
|
delete_many() for the db cache backend.
|
|
and session serializer.
|
|
|
|
Thanks Guyon Morée for the report.
|
|
|
|
|
|
On Firebird, 'value' is a reserved word and must be quoted.
|
|
|
|
LRU culling turns every read into a kind of write to the cache: cache keys
are moved to the first position in the OrderedDict when they are retrieved.
The RWLock which permitted multiple readers while prioritizing a single
writer is obsolete since all accesses are now writes.
|
|
|
|
|
|
|
|
|
|
other backends.
|
|
a callable that returns None.
|
|
top-level attributes of CACHES['OPTIONS'].
Per deprecation timeline.
|
|
This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda
because try/except performs better.
|
|
|
|
better readability.
|
|
file is empty.
|
|
Expression.convert_value().
Unused since a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
|
|
|
|
|
|
|
|
|
|
|
|
equivalents
Thanks Tim Graham for the review.
|
|
|
|
|
|
|
|
|
|
io.open() is an alias for open() on Python 3.
|
|
__ne__() defaults to the opposite of __eq__() on Python 3
when it doesn't return NotImplemented.
|
|
Thanks Tim Graham for the review.
|
|
Thanks Tim Graham and Simon Charette for the reviews.
|
|
Thanks Tim Graham for the review.
|
|
|
|
|
|
libmemcached manages its own connections, so isn't affected by refs #5133.
|