You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our print_event predicate allows regex to be used to match print events. We currently take an input string and evaluate it as regex in a loop, which is expensive.
In our data validation step for a predicate, we are already casting once - we should just cache that value on the predicate to avoid recomputing.
The text was updated successfully, but these errors were encountered:
Our
print_event
predicate allows regex to be used to match print events. We currently take an input string and evaluate it as regex in a loop, which is expensive.In our data validation step for a predicate, we are already casting once - we should just cache that value on the predicate to avoid recomputing.
The text was updated successfully, but these errors were encountered: