I am usign SphinxQL to query Sphinx RT indexes. Found that queries return 20 matches at most (20 seems to be a default value).
Tried adding options the SELECT
query to change that limit to 1000:
SELECT [...] OPTION cutoff = 1000, max_matches = 1000
But got same results.
Is there a way to override the 20 matches result limitation using SphinxQL?