class Geocoder::Cache

def keys


that have non-nil values.
Array of keys with the currently configured prefix
#
def keys
  store.keys.select{ |k| k.match(/^#{prefix}/) and interpret(store[k]) }
end