module Geocoder

def get_lookup(name)


Retrieve a Lookup object from the store.
#
def get_lookup(name)
  unless defined?(@lookups)
    @lookups = {}
  end
  unless @lookups.include?(name)
    @lookups[name] = spawn_lookup(name)
  end
  @lookups[name]
end