: solr supports params start and rows : append &start=X&rows=Y to the url (assuming you are using standard : request handler) : : where X = page number : and Y = results per page.
not quite ... "start" is the result number you wnat to start at (zero indexed), so if you want 10 results per page your "rows" value would always be "10" and your start values would be 0, 10, 20, 30, 40, etc... -Hoss