0

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

Madhusudan
  • 435
  • 2
  • 9
  • 26
  • Actually, why you need this? Only for debug purposes? – Mysterion Apr 02 '14 at 06:55
  • No, I want to see all retrived documents. But it is showing only 10 documents. I am using solr as a part of my B Tech project for document retrival – Madhusudan Apr 02 '14 at 07:54
  • why you need to see all? actually, it's pretty heavyweight, to retrieve all docs from index. – Mysterion Apr 02 '14 at 07:58
  • I have big dataset at backend and My query is output of my algorithm which disambiguate polysemy words, So I want to test efficiency of my algorithm based on retrived document. Thats why I want see all retrived documents (atleast firse 25 documents) – Madhusudan Apr 02 '14 at 08:39
  • 1
    start=0&rows=25 Why it doesn't help? – Mysterion Apr 02 '14 at 10:46
  • Shall I write this with query? "bank of america start=0&rows=25 ",am i right??? – Madhusudan Apr 02 '14 at 16:09
  • Thnx @Mysterion I made a mistake. Now I got it. I kept 0 and 25 in start and rows box. Thnx again – Madhusudan Apr 03 '14 at 06:48

1 Answers1

1

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
Vladimir Vagaytsev
  • 2,871
  • 9
  • 33
  • 36
Emad
  • 544
  • 2
  • 6