-
Notifications
You must be signed in to change notification settings - Fork 14
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
Optimise SOX #391
Comments
Reduces execution time from ~4.6ms to ~2.5ms Part of #391
Reduces execution time from ~3.6ms to ~2.3ms Part of #391
Reduces execution time from ~1ms to ~0.6ms Part of #391
Reduces execution time from ~1s to ~0.45s Part of #391
Reduces execution time from ~4.5ms to ~3.3ms Part of #391
Reduces execution time from ~1.5ms to ~1.1ms Part of #391
I'm not sure why, but previously I was performing a GET request to *each* post that had a revision and manually extracting the edit comment from the HTML. This was unnecessary because it a) required many more page requests that needed and b) was less efficient as it needed to parse the HTML to extract the revision comment. The function now uses a single API query with a heavy filter to only get the data that is required (post ID, revision comment, revision type). Part of #391.
Previosuly, one API call was being made for *each* post that had a closed status next to its title. Thi was unnecessary because it required many more API requests than needed, and so used up more of the the API quota and bandwidth. The function will now make a single API call with all the IDs that have a closed status. Part of #391.
Most API requests will now be cached for 3 minutes before they are requested from the API again. Note: the choice of 3 minutes was fairly abritrary and might need tweaking in future. This is to try and reduce the number of useless API calls made, saving bandwidth and should speed up some SOX features (as they will not need to wait for a response from the API if the data is already saved locally). A major change is that `sox.helpers.getFromAPI` will now essentially return the 'inner' `items` object, rather than the exact response from the Stack Exchange API (which had extra 'metadata' such as quota usage, backoff details, and error messages). This means the function will now return only an array of items, which will include the cached items, if applicable. Caching will be enabled *by default*, as long as multiple IDs are provided (in an array) and the `featureId` property is sent in the call to `sox.helpers.getFromAPI`. I've implemented the caching to be per-feature and per-endpoint. This means if two different features request to the same endpoint for the same ID(s), the cache will not be shared. This is because features use their own specific API filters, so sharing the cache between features would mean there is potential for the data to not be what was requested. Part of #391.
The Chrome Dev Tools JavaScript Profiler revealed some features are being run on pages they shouldn't. Also simplified regex for extracting ID from URLs. Store length of array before iterating so it doesn't need to be calculated on each iteration. Part of #391.
Previously, SOX's usage of MutationObservers was very inefficient; all of them were targeting document.body, rather than a more specific element where the change would occur. I've changed `sox.helpers.observe` to now *require* a target, and changed all usages of the function to include a more specific target. This should hopefully reduce the impact SOX has on the performance of pages whilst browsing. Part of #391.
Adds relevant `exclude` and `match` properties to sox.features.info.json for all features, so features only run on pages they were designed to run on. Part of #391.
This will allow data that we know is less likely to change to be cached for longer, reducing the number of unnecessary API API requests further. Part of #391.
With these changes, I've seen times go down to ones along these lines:
I'm fairly sure I'm using the same SE page I used to get the original numbers in this issue, and it definitely does seem to have improved. Whilst there may (will!) be more improvements to be made, I've finished the main things I wanted to do (cache API responses, improve MutationObservers), so I'm going to close this and release v2.5.0 to master. |
SOX can sometimes add up to a few seconds to page load times, and its performance seems to decrease as more features are enabled.
This causes users to have to think about which features they want most rather than enabling all that they like.
Whilst SOX inevitably will cause some increase in load times due to the changes/insertions it does to the DOM, I'm confident it can be improved.
I logged some very quick timing data on the time it takes from the first feature to load till the last using the features I have enabled (I have 50 out of the current 79 available enabled):
They seem to range from 200ms to 500ms. I'm not entirely sure how they're so different but it would be great to reduce this!
Some ideas on what I'm planning to do at first:
Many SOX features rely on Mutation Observers so they can react to changes in the DOM.
This has led to SOX adding lots of different ones for different areas of the page, and I'm sure some of them could at least be made more specific.
Alternatively have a single Mutation Observer for SOX which each feature hooks into to find changes it's interested in.
Performance of MutationObserver to detect nodes in entire DOM is an interesting read
If anyone has any other ideas, please do comment here, or submit a pull request!
The text was updated successfully, but these errors were encountered: