| Age | Commit message (Collapse) | Author |
|
|
|
|
|
key generation.
|
|
"Cache-Control: private".
|
|
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.
|
|
|
|
file is empty.
|
|
|
|
iter(dict) is equivalent to iter(dict.keys()).
|
|
|
|
Python docs say, "it's usually not necessary to invoke these methods directly."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
io.open() is an alias for open() on Python 3.
|
|
Thanks Tim Graham for the review.
|
|
Thanks Tim Graham for the review.
|
|
|
|
|
|
|
|
ConditionalGetMiddleware.
|
|
|
|
Not Modified" responses.
|
|
|
|
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.
|
|
|
|
|
|
same test run.
|
|
The first half of the test fails when using pylibmc (so will need
to be skipped).
|
|
Since the `cull` and `zero_cull` test cache configs set `MAX_ENTRIES`
and `CULL_FREQUENCY` in `OPTIONS`, which are only intended for use with
the locmem, filesystem, and database backends. This prevents test
failures once refs #20892 is fixed.
|
|
|
|
|
|
Also used ALLOWED_HOSTS to check for external hosts in assertRedirects().
|
|
|
|
|