-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve boot time by implementing sliding sync #2290
Open
FadhlanR
wants to merge
27
commits into
main
Choose a base branch
from
cs-7985-implement-sliding-sync
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d137242
Improve boot time by implementing sliding sync
FadhlanR f9145a9
Fix host tests
FadhlanR f764fe5
revert mock MatrixEvent
FadhlanR d881f31
wait until all events consumed
FadhlanR 843d928
Fix host tests
FadhlanR 17e3a7c
set m.direct
FadhlanR 06438a4
Another sdk patch
FadhlanR 1d34114
lint fix
FadhlanR c1401d4
Load more rooms if needed
FadhlanR 9cb49b5
Merge branch 'main' into cs-7985-implement-sliding-sync
FadhlanR a6e4ab3
Add test to load more rooms
FadhlanR 52ce61f
lint fix
FadhlanR 1576b13
Fix host tests
FadhlanR f127c9d
Merge branch 'main' into cs-7985-implement-sliding-sync
FadhlanR 8c5705e
Execute loadAlltimelineEvents once at a time
FadhlanR bbbfed9
Update _client and _sliding-sync
FadhlanR 9020bf4
Revert unnecessary updates
FadhlanR 22723e3
Merge branch 'main' into cs-7985-implement-sliding-sync
FadhlanR 5aa449b
Remove unnecessary disabled
FadhlanR b42d1d4
Wait for take percySnapshot
FadhlanR 8bce43f
Update based on feedbacks
FadhlanR 682d7ff
Revert unnecassry changes
FadhlanR b881a4b
Merge branch 'main' into cs-7985-implement-sliding-sync
FadhlanR 6b6f0ea
Use roomResource.processing
FadhlanR d01bf2b
Simplified wait for event to be loaded
FadhlanR a14c957
Merge branch 'main' into cs-7985-implement-sliding-sync
FadhlanR a4fe8c9
revert instance updates
FadhlanR File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
Improve boot time by implementing sliding sync
- Loading branch information
commit d137242b3fd36a895973b416b9c9bf6acf024096
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,3 +99,6 @@ email: | |
|
||
templates: | ||
custom_template_directory: "/custom/templates/" | ||
|
||
experimental_features: | ||
msc3575_enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently, this is adequate, since we only have AI rooms and Auth rooms, but generally we have been considering a room an AI room if the aibot it one if it's members. Is it possible to use that criteria here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, the filter options are very limited, as you can see here. We could use the room_types filter if we defined the room type during room creation, but we don't.