summary refs log tree commit diff
path: root/synapse/util/caches
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-10-21 22:57:45 +0100
committerGitHub <noreply@github.com>2020-10-21 22:57:45 +0100
commitb28aaeb3a567ce1bbfd41796362b8bb0813ed0e3 (patch)
tree78d11a2d59052d7e0a2626429783ca03e260f9c5 /synapse/util/caches
parentMerge pull request #8593 from matrix-org/rav/cache_hacking/3 (diff)
downloadsynapse-b28aaeb3a567ce1bbfd41796362b8bb0813ed0e3.tar.xz
Optimise CacheDescriptor (#8594) release-v1.21.3
don't bother constricting a CacheContext unless we need one.
Diffstat (limited to 'synapse/util/caches')
-rw-r--r--synapse/util/caches/descriptors.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/synapse/util/caches/descriptors.py b/synapse/util/caches/descriptors.py
index a4172345ef..5d7fffee66 100644
--- a/synapse/util/caches/descriptors.py
+++ b/synapse/util/caches/descriptors.py
@@ -201,14 +201,16 @@ class CacheDescriptor(_CacheDescriptorBase):
 
             cache_key = get_cache_key(args, kwargs)
 
-            # Add our own `cache_context` to argument list if the wrapped function
-            # has asked for one
-            if self.add_cache_context:
-                kwargs["cache_context"] = _CacheContext.get_instance(cache, cache_key)
-
             try:
                 ret = cache.get(cache_key, callback=invalidate_callback)
             except KeyError:
+                # Add our own `cache_context` to argument list if the wrapped function
+                # has asked for one
+                if self.add_cache_context:
+                    kwargs["cache_context"] = _CacheContext.get_instance(
+                        cache, cache_key
+                    )
+
                 ret = defer.maybeDeferred(preserve_fn(self.orig), obj, *args, **kwargs)
                 ret = cache.set(cache_key, ret, callback=invalidate_callback)