-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Add url dispatcher benchmark for resolving root route when exists many plain routes in the subtree #9954
Conversation
…y plain routes in the subtree
CodSpeed Performance ReportMerging #9954 will not alter performanceComparing Summary
Benchmarks breakdown
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #9954 +/- ##
=======================================
Coverage 98.72% 98.72%
=======================================
Files 121 121
Lines 36682 36707 +25
Branches 4378 4381 +3
=======================================
+ Hits 36214 36239 +25
Misses 315 315
Partials 153 153
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Backport to 3.10: 💚 backport PR created✅ Backport PR branch: Backported as #9958 🤖 @patchback |
…y plain routes in the subtree (#9954) Yet another benchmark. There is a tree: ``` / /api /api/server /api/server/dispatch /api/server/dispatch/123 /api/server/dispatch/123/update ``` The benchmark resolves the root route `/`. If the search starts from checking deep-most resource it cold be suboptimal. (cherry picked from commit be31bed)
Backport to 3.11: 💚 backport PR created✅ Backport PR branch: Backported as #9959 🤖 @patchback |
…y plain routes in the subtree (#9954) Yet another benchmark. There is a tree: ``` / /api /api/server /api/server/dispatch /api/server/dispatch/123 /api/server/dispatch/123/update ``` The benchmark resolves the root route `/`. If the search starts from checking deep-most resource it cold be suboptimal. (cherry picked from commit be31bed)
Backport to 3.12: 💚 backport PR created✅ Backport PR branch: Backported as #9960 🤖 @patchback |
…y plain routes in the subtree (#9954) Yet another benchmark. There is a tree: ``` / /api /api/server /api/server/dispatch /api/server/dispatch/123 /api/server/dispatch/123/update ``` The benchmark resolves the root route `/`. If the search starts from checking deep-most resource it cold be suboptimal. (cherry picked from commit be31bed)
…esolving root route when exists many plain routes in the subtree (#9958) **This is a backport of PR #9954 as merged into master (be31bed).** Yet another benchmark. There is a tree: ``` / /api /api/server /api/server/dispatch /api/server/dispatch/123 /api/server/dispatch/123/update ``` The benchmark resolves the root route `/`. If the search starts from checking deep-most resource it cold be suboptimal. Co-authored-by: Andrew Svetlov <[email protected]>
…esolving root route when exists many plain routes in the subtree (#9959) **This is a backport of PR #9954 as merged into master (be31bed).** Yet another benchmark. There is a tree: ``` / /api /api/server /api/server/dispatch /api/server/dispatch/123 /api/server/dispatch/123/update ``` The benchmark resolves the root route `/`. If the search starts from checking deep-most resource it cold be suboptimal. Co-authored-by: Andrew Svetlov <[email protected]>
…esolving root route when exists many plain routes in the subtree (#9960) **This is a backport of PR #9954 as merged into master (be31bed).** Yet another benchmark. There is a tree: ``` / /api /api/server /api/server/dispatch /api/server/dispatch/123 /api/server/dispatch/123/update ``` The benchmark resolves the root route `/`. If the search starts from checking deep-most resource it cold be suboptimal. Co-authored-by: Andrew Svetlov <[email protected]>
Yet another benchmark.
There is a tree:
The benchmark resolves the root route
/
. If the search starts from checking deep-most resource it cold be suboptimal.