| Age | Commit message (Collapse) | Author |
|
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.
|
|
|
|
Previously, the MemcachedCache backend ignored `OPTIONS` and
PyLibMCCache used them to set pylibmc behaviors. Both backends now
pass `OPTIONS` as keyword arguments to the client constructors.
|
|
|
|
|
|
|
|
File operations always raise a ENOENT error when a file doesn't exist.
Checking the file exists before the operation adds a race condition
condition where the file could be removed between operations. As the
operation already raises an error on a missing file, avoid this race and
avoid checking the file exists twice. Instead only check a file exists
by catching the ENOENT error.
|
|
|
|
cache keys.
|
|
|
|
|
|
|