diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-29 15:52:42 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-29 15:52:42 +0000 |
commit | c1de91aca466bf8e5e711c2042535505bb02a08d (patch) | |
tree | 370b9c0a378d168511d132919e381d1f97133463 /synapse/storage/account_data.py | |
parent | Merge pull request #541 from matrix-org/erikj/fixsomeofpush (diff) | |
parent | Comment. Remove superfluous order by (diff) | |
download | synapse-c1de91aca466bf8e5e711c2042535505bb02a08d.tar.xz |
Merge pull request #540 from matrix-org/erikj/sync
Prefill stream change caches
Diffstat (limited to 'synapse/storage/account_data.py')
-rw-r--r-- | synapse/storage/account_data.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/synapse/storage/account_data.py b/synapse/storage/account_data.py index ed6587429b..625d062eb1 100644 --- a/synapse/storage/account_data.py +++ b/synapse/storage/account_data.py @@ -14,7 +14,6 @@ # limitations under the License. from ._base import SQLBaseStore -from synapse.util.caches.stream_change_cache import StreamChangeCache from twisted.internet import defer import ujson as json @@ -24,14 +23,6 @@ logger = logging.getLogger(__name__) class AccountDataStore(SQLBaseStore): - def __init__(self, hs): - super(AccountDataStore, self).__init__(hs) - - self._account_data_stream_cache = StreamChangeCache( - "AccountDataAndTagsChangeCache", - self._account_data_id_gen.get_max_token(None), - max_size=10000, - ) def get_account_data_for_user(self, user_id): """Get all the client account_data for a user. |