class Geocoder::Lookup::Base

def cache


The working Cache object.
#
def cache
  if @cache.nil? and store = configuration.cache
    cache_options = configuration.cache_options
    @cache = Cache.new(store, cache_options)
  end
  @cache
end