diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-19 12:20:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 12:20:29 +0100 |
commit | 97647b33c248f25571bae617365d95434e6a3d5f (patch) | |
tree | 044641744fc53b9af803f6adb9b914eaa7083f43 /changelog.d | |
parent | Pre-emptively fix synapse.storage.types.Connection for future mypy release (#... (diff) | |
download | synapse-97647b33c248f25571bae617365d95434e6a3d5f.tar.xz |
Replace DeferredCache with LruCache where possible (#8563)
Most of these uses don't need a full-blown DeferredCache; LruCache is lighter and more appropriate.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/8563.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8563.misc b/changelog.d/8563.misc new file mode 100644 index 0000000000..eeba8e5fee --- /dev/null +++ b/changelog.d/8563.misc @@ -0,0 +1 @@ +Replace `DeferredCache` with the lighter-weight `LruCache` where possible. |