module Solr4R::Result::Response

Public Instance Methods

to_i() click to toggle source
# File lib/solr4r/result.rb, line 90
def to_i
  response.to_i
end

Private Instance Methods

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