Felix Rajesh
Felix Rajesh

Reputation: 7

How do I get more than 1000 matching results through sphinx search?

How do I get more than 1000 matching results through sphinx search?

Upvotes: 0

Views: 1056

Answers (2)

Brian
Brian

Reputation: 508

I found another solution that might still be helpful (sphinxsearch forum).

select * from mytable where id > 10 limit 2000 option max_matches=2000

Upvotes: 0

Robert Harvey
Robert Harvey

Reputation: 180948

Change the max_matches setting in your sphinx.yml file

Upvotes: 1

Related Questions