diff options
| author | Grant Jenks <grant.jenks@gmail.com> | 2018-01-24 09:26:19 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-01-24 12:26:19 -0500 |
| commit | d38a3169a426516623929ff8c2b2c9703d801b75 (patch) | |
| tree | 35ae3049ffd0d6fc0f4c14dfae45c0aac81e5a5d /AUTHORS | |
| parent | f9844f484186fa13399bf8b96f58616687fe158a (diff) | |
Fixed #28977 -- Changed local-memory cache to use LRU culling.
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.
Diffstat (limited to 'AUTHORS')
| -rw-r--r-- | AUTHORS | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -301,6 +301,7 @@ answer newbie questions, and generally made Django that much better: Gonzalo Saavedra <gonzalosaavedra@gmail.com> Gopal Narayanan <gopastro@gmail.com> Graham Carlyle <graham.carlyle@maplecroft.net> + Grant Jenks <contact@grantjenks.com> Greg Chapple <gregchapple1@gmail.com> Gregor Müllegger <gregor@muellegger.de> Grigory Fateyev <greg@dial.com.ru> |
