-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Performance improvements #3808
Merged
+1,006
−236
Merged
Performance improvements #3808
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
b196b21
Most basic caching, initial tests show ~50% time improvement
JohnMcPMS f2f7dd1
Minor changes and test validation
JohnMcPMS 2957a5e
Expand test to work on server
JohnMcPMS 50122ca
Force a cache update after we install something to override the 1 sec…
JohnMcPMS b91aad1
Spelling
JohnMcPMS ac1c153
Expand tests, fix threading issues
JohnMcPMS 020399b
Spelling
JohnMcPMS af2b066
Change to event driven update determination and add more tests
JohnMcPMS 409d7c8
Make test use different root and maybe fix pipeline pdb publishing
JohnMcPMS 1c1e50a
Add regex caching
JohnMcPMS 5d630f8
Merge from master
JohnMcPMS 331645d
Make single regex static and improve version lookup efficiency
JohnMcPMS 7b6fea8
Optimize version lookups
JohnMcPMS 9789305
Let internal property lookups handle missing manifest
JohnMcPMS d2bb559
Make version comparison case insensitive to match with index
JohnMcPMS aef1eb4
Bring back a forced cache update after an install to reduce timing im…
JohnMcPMS 506f8b3
Skip test to see if it is localized
JohnMcPMS eb2834d
Try disabling optimization for better crash debugging
JohnMcPMS 1863a5f
Restore optimization and disable test for now
JohnMcPMS d26ef84
PR feedback
JohnMcPMS 20c8e88
Spelling and pipeline
JohnMcPMS 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
Add regex caching
commit 1c1e50aabfc44b5ce848aa473038ca3a1f062aa0
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
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.
Nit: can you add a comment stating this does caching to avoid recompiling the regex, please?