Count keyword matches
infino_countCount how many rows match a keyword query without retrieving data. Get a quick tally over a text column when only the number matters.
Instructions
Use when you only need HOW MANY rows match a keyword query, not the rows themselves — a fast tally over a text column, without fetching or ranking. Cheaper than infino_keyword_search when a number is all you need (e.g. 'how many docs mention X'). For the matching rows use infino_keyword_search or infino_token_match.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Match any token ('or', the default) or every token ('and'). | |
| query | Yes | Query terms, matched as literal tokens. | |
| table | Yes | Table to search. | |
| column | No | Text column to search; inferred from the table schema when omitted. |