Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change 
notification.

The "CommonQueryParameters" page has been changed by GrantIngersoll:
http://wiki.apache.org/solr/CommonQueryParameters?action=diff&rev1=46&rev2=47

  <<Anchor(pageDocpageScore)>>
  == pageDoc and pageScore ==
  
- <!> Solr4.0 See https://issues.apache.org/jira/browse/SOLR-1726
+ <!> [[Solr4.0]] See https://issues.apache.org/jira/browse/SOLR-1726
  If you expect to be paging deeply into the results (say beyond page 10, 
assuming rows=10) and you are sorting by score, you may wish to add the pageDoc 
and pageScore parameters to your request.  These two parameters tell Solr (and 
Lucene) what the last result (Lucene internal docid and score) of the previous 
page was, so that when scoring the query for the next set of pages, it can 
ignore any results that occur higher than that item.  To get the Lucene 
internal doc id, you will need to add [docid] to the &fl list.
  
     . Example: {{{q=*:*&start=10&pageDoc=5&pageScore=1.345&fl=[docid],score}}}

Reply via email to