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
Currently all matching is done with a linear search of the table. When all field matches are "exact", the process can be much more efficient by applying a hash to the values for the matches (and storing them in a hash table) and then applying the same hash to the packet's fields at the point of a lookup.
Should add support for this to the IRI implementation.
The text was updated successfully, but these errors were encountered:
Currently all matching is done with a linear search of the table. When all field matches are "exact", the process can be much more efficient by applying a hash to the values for the matches (and storing them in a hash table) and then applying the same hash to the packet's fields at the point of a lookup.
Should add support for this to the IRI implementation.
The text was updated successfully, but these errors were encountered: