質問

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
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top