You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hashing the HTML and if it has not changed, skipping all of the IHtmlDocument/parsing/etc lines (note that we will probably still need to get the IHtmlDocument for subareas/routes so that we can check those as well)
Need to check speed of hashing algorithms and see if there would actually be any time savings here to "hash HTML and check hash against previous" or "just load the IHtmlDocument and do all the parsing anyway"
See what happens if I take off the awaits before ParseRouteAsync and ParseAreaAsync (since I don't actually need to wait before those things complete. Last time I tried this I think this meant that the Task.WaitAll actually finished too quickly because all the DestAreas finished before any of the children
See if I can take some hints from buildxl to only rebuild things that have actually changed.
For instance: if a route has not changed, we may be able to avoid all the HTML parsing and instead skip it
The text was updated successfully, but these errors were encountered: