I am trying to paginate through the results of a very broad query but Solr returns only 10 results even when the rows and start parameters are present.
http://localhost:8983/solr/patents/query?q=*:*&rows=10000000&start=9
This returns:
{
"responseHeader":{
"status":0,
"QTime":0,
"params":{
"q":"*:*",
"start":"9",
"rows":"10000000"}},
"response":{"numFound":10,"start":9,"docs":[
{
"date":"1980-07-10T00:00:00Z",
"id":117008,
"country":"US",
"title":"Solr test",
"_version_":1525967658488430592}]
}}
What is the best way to paginate through several thousand documents?