diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-02-11 15:01:15 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-02-11 15:01:15 +0000 |
commit | f5a70e0d2e890adea53b3f6565a3bbe92512a506 (patch) | |
tree | 945af3ac6ec84a8f8b1ec1f0df502168f0d7e5e5 /tests/utils.py | |
parent | Add a lru cache class (diff) | |
download | synapse-f5a70e0d2e890adea53b3f6565a3bbe92512a506.tar.xz |
Add a cache for get_event
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index 25c33492a5..39895c739f 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -41,6 +41,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): if config is None: config = Mock() config.signing_key = [MockKey()] + config.event_cache_size = 1 if datastore is None: db_pool = SQLiteMemoryDbPool() |