: I want the query to return all the found docs, not just 10 of them by
: default. It could be in the thousands. So i can furture process the
: returned json structure in my javascript.

FAQ...

http://wiki.apache.org/solr/FAQ
http://wiki.apache.org/solr/FAQ#head-ad538363dc33eba936af39b95ad0f0e719fa84d3

How can I get ALL the matching documents back? ... How can I return an 
unlimited number of rows?

This is impractical in most cases. People typically only want to do this 
when they know they are dealing with an index whose size guarantees the 
result sets will be always be small enough that they can feasibly be 
transmitted in a manageable amount -- but if that's the case just specify 
what you consider a "manageable amount" as your rows param and get the 
best of both worlds (all the results when your assumption is right, and a 
sanity cap on the result size if it turns out your assumptions are wrong)




-Hoss

Reply via email to