Token match (unranked keyword filter)
infino_token_matchFilter rows to the set containing a keyword or token, matching indexed tokens and stems. Returns unranked matches for fast keyword-based retrieval without scoring.
Instructions
Use when you need the SET of rows containing a keyword, not a ranked order — a fast unranked keyword filter. Returns rows whose text column contains the token(s), matching indexed tokens and their stems. For ranked results use infino_keyword_search; for analytical filtering across columns use infino_sql.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Match any token ('or', the default) or every token ('and'). | |
| limit | No | Max rows to return; matches beyond this are counted in 'matched' but not returned. | |
| query | Yes | Token(s) to match. | |
| table | Yes | Table to search. | |
| column | No | Text column to match; inferred if omitted. |