module Solr4R::Result::Response

Public Instance Methods

to_i() click to toggle source
   # File lib/solr4r/result.rb
91 def to_i
92   response.to_i
93 end

Private Instance Methods

_each() { |document| ... } click to toggle source
    # File lib/solr4r/result.rb
 97 def _each
 98   deep_fetch('response/docs').each { |hash|
 99     yield Document.new(self, hash)
100   }
101 end