On Thu, May 15, 2008 at 6:56 PM, dharhsana <[EMAIL PROTECTED]>
wrote:

>
>
> hello umar,
>
> Thank u so much for replying me.
>
> I have a requirement that i have to display first 10 values in jsp page .
> In
> that page itself i have (NEXT) button while clicking, it should query the
> next 10 records from solr.How can i implement this can u give some example
> for this.
>
> As per u said , i understood that we have to pass the
> (http://localhost:8080/solr/select/start=0&row=10) as a parameter.But i
> dont
> know to implement this.
>

the link url should be:
  http://localhost:8080/solr/select/?q=actual query
text&start=0&row=10<http://localhost:8080/solr/select/start=0&row=10>

for the next page
  http://localhost:8080/solr/select/?q=actual query
text&start=10&row=10<http://localhost:8080/solr/select/start=0&row=10>

u will have to somehow maintain the state variable x that fills the 'x' for
&start='x' value for each page
where x= page# * 10


> http://localhost:8080/solr/select/(here<http://localhost:8080/solr/select/%28here>how
>  can i specify the limit of rows
> return from the solr response xml )
>
> thanks in advance
> very urgent
> --
> View this message in context:
> http://www.nabble.com/solr-search-tp17249602p17253212.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>
>

Reply via email to