It's Sphinx itself that enforces the pagination... so what you'll need to do is get a really big page using :per_page.
Sphinx's default is a maximum of 1000 results. If you want something larger than that, then you need to set max_matches in your config/sphinx.yml file to something greater (perhaps 100000), and also include the max_matches setting in any relevant searches (:max_matches => 100_000). It's all covered in the docs: http://freelancing-god.github.com/ts/en/advanced_config.html#large-result-sets Cheers -- Pat On 07/03/2011, at 11:00 PM, rtacconi wrote: > I have a search where I display the entries found by Sphinx using will > paginate, but I have a Google map where I would like to display all > entries, not just the entries in the current page. > > Is there a method to get all entries form a ThinkingSphinx object? > > Thank you > > -- > You received this message because you are subscribed to the Google Groups > "Thinking Sphinx" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/thinking-sphinx?hl=en. > -- You received this message because you are subscribed to the Google Groups "Thinking Sphinx" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/thinking-sphinx?hl=en.
