diff options
author | Erik Johnston <erik@matrix.org> | 2016-05-09 10:08:21 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-05-09 10:08:21 +0100 |
commit | 4ea762c1a28edbf18d0a183ed35fb8a5a11847c5 (patch) | |
tree | 5b890e03ed33abada6da6e6052722973ba32bbdc /synapse/storage/registration.py | |
parent | Merge pull request #767 from matrix-org/erikj/transaction_txn (diff) | |
download | synapse-4ea762c1a28edbf18d0a183ed35fb8a5a11847c5.tar.xz |
Add cache to get_user_by_id
Diffstat (limited to 'synapse/storage/registration.py')
-rw-r--r-- | synapse/storage/registration.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py index 7af0cae6a5..bda84a744a 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -101,6 +101,7 @@ class RegistrationStore(SQLBaseStore): make_guest, appservice_id ) + self.get_user_by_id.invalidate((user_id,)) self.is_guest.invalidate((user_id,)) def _register( @@ -156,6 +157,7 @@ class RegistrationStore(SQLBaseStore): (next_id, user_id, token,) ) + @cached() def get_user_by_id(self, user_id): return self._simple_select_one( table="users", @@ -193,6 +195,7 @@ class RegistrationStore(SQLBaseStore): }, { 'password_hash': password_hash }) + self.get_user_by_id.invalidate((user_id,)) @defer.inlineCallbacks def user_delete_access_tokens(self, user_id, except_token_ids=[]): |