-
Notifications
You must be signed in to change notification settings - Fork 5k
Reduce overhead of calling into SearchValues #86046
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
Conversation
Tagging subscribers to this area: @dotnet/area-system-buffers Issue DetailsI recommend looking at the diff without whitespace changes. The idea here is pretty simple - instead of passing the bitmaps to worker methods by value, we pass a ref and have the callee do the load. This simplifies both the call site and callee. Ascii chars
Ascii bytes
Any bytes
Regex
Between this and #84370, I think this closes #81105 and closes #80447.
|
I recommend looking at the diff without whitespace changes.
The idea here is pretty simple - instead of passing the bitmaps to worker methods by value, we pass a ref and have the callee do the load. This simplifies both the call site and callee.
Ascii chars
Ascii bytes
Any bytes
Regex
Between this and #84370, I think this closes #81105 and closes #80447.