module Geocoder

def cache


The working Cache object, or +nil+ if none configured.
#
def cache
  if @cache.nil? and store = Configuration.cache
    @cache = Cache.new(store, Configuration.cache_prefix)
  end
  @cache
end