diff options
author | Erik Johnston <erik@matrix.org> | 2016-02-02 15:19:34 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-02-02 15:21:10 +0000 |
commit | 65e92eca4912848b03f71b7b7d29727015be31ce (patch) | |
tree | f60ef124aa6ebf4fd3fcf446fa65abae5f53523d /synapse/storage | |
parent | Merge pull request #546 from matrix-org/erikj/events (diff) | |
download | synapse-65e92eca4912848b03f71b7b7d29727015be31ce.tar.xz |
Change the way we do public room list fetching
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/room.py | 2 | ||||
-rw-r--r-- | synapse/storage/schema/delta/28/public_roms_index.sql | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/synapse/storage/room.py b/synapse/storage/room.py index dc09a3aaba..1b6311f332 100644 --- a/synapse/storage/room.py +++ b/synapse/storage/room.py @@ -18,7 +18,7 @@ from twisted.internet import defer from synapse.api.errors import StoreError from ._base import SQLBaseStore -from synapse.util.caches.descriptors import cachedInlineCallbacks +from synapse.util.caches.descriptors import cachedInlineCallbacks, cached from .engines import PostgresEngine, Sqlite3Engine import collections diff --git a/synapse/storage/schema/delta/28/public_roms_index.sql b/synapse/storage/schema/delta/28/public_roms_index.sql new file mode 100644 index 0000000000..ba62a974a4 --- /dev/null +++ b/synapse/storage/schema/delta/28/public_roms_index.sql @@ -0,0 +1,16 @@ +/* Copyright 2016 OpenMarket Ltd + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +*/ + +CREATE INDEX public_room_index on rooms(is_public); |