class Geocoder::Lookup::Base

def cache


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