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
Is your feature request related to a problem? Please describe.
The has_any_array_item_transition and has_any_array_item_transition_to_accepting functions in the Automaton are called from the engine, but they look through all the transitions.
Describe the solution you'd like
We have the facility to save such properties, the StateAttributes struct. It should be checked if caching these two properties as an attribute improves engine performance.
Describe alternatives you've considered
If the perf results are not improved then we can leave the dynamic check.
The text was updated successfully, but these errors were encountered:
added more structure and metadata to the automaton,
improving perf of all queries in general (~6% thpt) and
array-index queries in particular (~12% thpt)
ref: #138
Is your feature request related to a problem? Please describe.
The
has_any_array_item_transition
andhas_any_array_item_transition_to_accepting
functions in theAutomaton
are called from the engine, but they look through all the transitions.Describe the solution you'd like
We have the facility to save such properties, the
StateAttributes
struct. It should be checked if caching these two properties as an attribute improves engine performance.Describe alternatives you've considered
If the perf results are not improved then we can leave the dynamic check.
The text was updated successfully, but these errors were encountered: