-
- Downloads
Refactor state group lookup to reduce DB hits (#4011)
Currently when fetching state groups from the data store we make two hits two the database: once for members and once for non-members (unless request is filtered to one or the other). This adds needless load to the datbase, so this PR refactors the lookup to make only a single database hit.
Showing
- changelog.d/4011.misc 1 addition, 0 deletionschangelog.d/4011.misc
- synapse/handlers/initial_sync.py 2 additions, 2 deletionssynapse/handlers/initial_sync.py
- synapse/handlers/message.py 8 additions, 12 deletionssynapse/handlers/message.py
- synapse/handlers/pagination.py 7 additions, 8 deletionssynapse/handlers/pagination.py
- synapse/handlers/room.py 12 additions, 10 deletionssynapse/handlers/room.py
- synapse/handlers/sync.py 43 additions, 54 deletionssynapse/handlers/sync.py
- synapse/rest/client/v1/room.py 2 additions, 1 deletionsynapse/rest/client/v1/room.py
- synapse/storage/events.py 1 addition, 1 deletionsynapse/storage/events.py
- synapse/storage/state.py 519 additions, 326 deletionssynapse/storage/state.py
- synapse/visibility.py 9 additions, 6 deletionssynapse/visibility.py
- tests/storage/test_state.py 110 additions, 65 deletionstests/storage/test_state.py
Loading
Please register or sign in to comment