Axiom is blazing fast. This page explains how you can further improve performance in Axiom.
where ["my-field"] == "axiom"
filters for events where the my-field
field takes the value axiom
.
Include field-specific filters near the beginning of your query for modest performance improvements.
search
operator and non-field-specific filterssearch
operator and equivalent expressions such as where * contains
or where * has
.
Using non-field-specific filters degrades performance significantly. For more information, see Use the search
operator efficiently.