summary refs log tree commit diff
path: root/changelog.d/8752.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Cache event ID to auth event IDs lookups (#8752)Erik Johnston2020-11-131-0/+1
This should hopefully speed up `get_auth_chain_difference` a bit in the case of repeated state res on the same rooms. `get_auth_chain_difference` does a breadth first walk of the auth graphs by repeatedly looking up events' auth events. Different state resolutions on the same room will end up doing a lot of the same event to auth events lookups, so by caching them we should speed things up in cases of repeated state resolutions on the same room.