-
Notifications
You must be signed in to change notification settings - Fork 55
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
Investigate ways to reduce the analysis message matcher overhead #135
Comments
This is a work in progress, experimentation will continue as the schedule allows. |
+1 :) |
There may be some things you can do to optimize specific matchers (order of expressions and types of comparisons). If you can share some problem matchers I will take a look. The goal or the remaining items above is to handle many matchers faster (by clustering) so the large matchers would have to share some conditional expressions that could fail the entire set fast (i.e. if they are relatively unique this experimentation will not help). |
I understand this optimization only apply to analysis plugin ? (with all thread sharing the same message_matcher). |
Yeah mozilla-services/lua_sandbox#213 is about all I can squeeze out of a single matcher. mozilla-services/lua_sandbox#208 may be relevant if the string at the end is unique so you don't need to actually anchor it. |
Yeah I tested and it's faster without the trailing "$" . |
Some Approaches to Test
Logger ==
The text was updated successfully, but these errors were encountered: