diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-04-12 11:22:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-12 11:22:30 +0100 |
commit | 261124396e43a0552a199c8eccda4f8e2535c1b0 (patch) | |
tree | 72ffedfd0b5def2ab4261a2833de95052e5757b7 /synapse/util | |
parent | Merge pull request #3088 from matrix-org/erikj/as_parallel (diff) | |
parent | Document the behaviour of ResponseCache (diff) | |
download | synapse-261124396e43a0552a199c8eccda4f8e2535c1b0.tar.xz |
Merge pull request #3059 from matrix-org/rav/doc_response_cache
Document the behaviour of ResponseCache
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/caches/response_cache.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/synapse/util/caches/response_cache.py b/synapse/util/caches/response_cache.py index 00af539880..4ecd91deb5 100644 --- a/synapse/util/caches/response_cache.py +++ b/synapse/util/caches/response_cache.py @@ -31,6 +31,18 @@ class ResponseCache(object): self.timeout_sec = timeout_ms / 1000. def get(self, key): + """Look up the given key. + + Returns a deferred which doesn't follow the synapse logcontext rules, + so you'll probably want to make_deferred_yieldable it. + + Args: + key (str): + + Returns: + twisted.internet.defer.Deferred|None: None if there is no entry + for this key; otherwise a deferred result. + """ result = self.pending_result_cache.get(key) if result is not None: return result.observe() @@ -38,6 +50,26 @@ class ResponseCache(object): return None def set(self, key, deferred): + """Set the entry for the given key to the given deferred. + + *deferred* should run its callbacks in the sentinel logcontext (ie, + you should wrap normal synapse deferreds with + logcontext.run_in_background). + + Returns a new Deferred which also doesn't follow the synapse logcontext + rules, so you will want to make_deferred_yieldable it + + (TODO: before using this more widely, it might make sense to refactor + it and get() so that they do the necessary wrapping rather than having + to do it everywhere ResponseCache is used.) + + Args: + key (str): + deferred (twisted.internet.defer.Deferred): + + Returns: + twisted.internet.defer.Deferred + """ result = ObservableDeferred(deferred, consumeErrors=True) self.pending_result_cache[key] = result |