Skip to content
Snippets Groups Projects
Commit 0677fc1c authored by Erik Johnston's avatar Erik Johnston
Browse files

Comment

parent 34473a9c
No related branches found
No related tags found
No related merge requests found
...@@ -947,6 +947,9 @@ class RoomListHandler(BaseHandler): ...@@ -947,6 +947,9 @@ class RoomListHandler(BaseHandler):
def handle_room(room_id): def handle_room(room_id):
aliases = yield self.store.get_aliases_for_room(room_id) aliases = yield self.store.get_aliases_for_room(room_id)
# We pull each bit of state out indvidually to avoid pulling the
# full state into memory. Due to how the caching works this should
# be fairly quick, even if not originally in the cache.
def get_state(etype, state_key): def get_state(etype, state_key):
return self.state_handler.get_current_state(room_id, etype, state_key) return self.state_handler.get_current_state(room_id, etype, state_key)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment