-
-
Notifications
You must be signed in to change notification settings - Fork 138
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 json recursive performance #977
Comments
Issue seems more evident when the user is logged in, especially when loading the comment section. If the user is not logged in, there are no performance issues. This indicates that the comment payloads when logged in are significantly bigger. The difference in seconds for processing the comment section payload when not logged in vs logged in is respectively 0.102s and 3.2s (according to a few random tests). |
Things have been busy lately, and I have yet to find a good way to go about this so I will likely compromise on just excluding any results that are related to the comment section for now and think of a different way to go about it in the future. |
Seems like the major issue of the performance problems are restricted to the comments section, so I will just exclude them from processing. It seems like it does not affect any other functionality so there aren't any known compromises. |
Chrome (129.0.6668.42) running Iridium 2.1.1 still seems to get un-responsive while loading comments. Though only on the 2nd set of comments loading per-video onwards. As in: Initial video load, and scrolling down to comments will load fast and smoothly. |
@LazyBoot Can you open a new issue for that one? In might have missed something else in the logic I implemented for this one that must be different for subsequent loads. |
Done, opened as #1005 |
Currently there are a few operations that take a performance hit that is noticeable due to brief UI lockups, these mostly occur when the comment section is loading, which can contain a significant amount of data, and deep hierarchy.
In multiple sections of the extension the root path is being passed arbitrarily, meaning the recursive function has to traverse the entire json tree even when it might not be of interest for the function using it.
Ideally this should be substituted by a specific prior root path check to ensure the data is of interest of the function, for example:
Iridium/src/firefox/js/background-inject.js
Lines 254 to 259 in a5b58a3
Problem is this might introduce bugs because there might be multiple paths for the same root and all must be covered, for example a multi-path deep node:
Iridium/src/firefox/js/background-inject.js
Lines 2707 to 2708 in a5b58a3
However, the performance impact is noticeable so this must be improved in one way or another.
The text was updated successfully, but these errors were encountered: