-
Notifications
You must be signed in to change notification settings - Fork 568
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
Faster Regexes #1278
Faster Regexes #1278
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## shared-module-deps #1278 +/- ##
==================================================
- Coverage 92% 91% -0%
==================================================
Files 324 325 +1
Lines 21531 21582 +51
==================================================
+ Hits 19594 19628 +34
- Misses 1937 1954 +17 ☔ View full report in Codecov by Sentry. |
Implement Radix Tree
Addresses #1184. Uses the
regex
library as a drop-in replacement forre
.regex
releases the GIL during its operation, so by pairing it withrun_in_executor()
, we can effectively offload regex process into other CPU cores.TODO: