When I write some query in query box of solr search engine and ask for result then it shows that some number of documents found (numFound), but it shows only ten documents per page. How to see further retrived documents. There is no link like "next page" or some other thing. Please tell me how to see documents after first ten documen
You can specify rows
and start
parameters to your query:
rows
: number of rows to be returned (default 10
)start
: index of row to start from (default 0
)So you can add those to your query like this:
http://localhost:8983/solr/core/select?q=*:*&rows=10&start=10