:   % ruby inspect-solr-result.rb s1.rb
:   result['responseHeader']['params']['rows']  => 50
:   result['responseHeader']['params']['start'] => 1
: 
:   result['response']['numFound']              => 36
:   result['response']['start']                 => 1
:   result['response']['docs'].size             => 35

...you want to start at "0", imagine the full result list is a 
big array, and you are asking for a slice of that array starting at 
"1", skipping the 0th result.  

(Ruby has array slices right?)



-Hoss

Reply via email to