Geo::Coder::Cache - Add cache for Geo::Coder::*


Geo-Coder-Cache documentation  | view source Contained in the Geo-Coder-Cache distribution.

Index


NAME

Top

Geo::Coder::Cache - Add cache for Geo::Coder::*

SYNOPSIS

Top

  # for Geo::Coder::Yahoo
  use Geo::Coder::Yahoo;
  use Geo::Coder::Cache;
  my $geocoder = Geo::Coder::Cache->new(geocoder => Geo::Coder::Yahoo->new(appid => 'Your App ID'));
  my $location = $geocoder->geocode(location => '701 1st Ave, Sunnyvale, CA 94089');

  # for Geo::Coder::Google
  use Geo::Coder::Google;
  use Geo::Coder::Cache;
  my $geocoder = Geo::Coder::Cache->new(geocoder => Geo::Coder::Google->new(apikey => 'Your API Key'));
  my $location = $geocoder->geocode(location => '1600 Amphitheatre Pkwy, Mountain View, CA 94043');

DESCRIPTION

Top

Geo::Coder::Cache is a Geo::Coder::* wrapper with local file cache implemented by Cache::FileCache.

METHOD

Top

new

This method constructs a new Geo::Coder::Cache object and returns it. geocoder is required, and all the other options will be passed to Cache::FileCache.

  KEY                     DEFAULT
  -----------             --------------------
  geocoder                REQUIRED
  namespace               geo-coder-cache
  cache_root              $HOME/.cache
  default_expires_in      86400

get
set
remove

Geo::Coder::Cache itself is a Cache::FileCache, so please check Cache::FileCahce for cache related methods.

geocode

It is the primary method of this class. It will retrive result from cache first, and return if cache hit. Otherwise it will call Geo::Coder::*->geocode and then save the result in cache.

SEE ALSO

Top

Cache::FileCache

AUTHOR

Top

Yen-Ming Lee, <leeym@leeym.com>

COPYRIGHT AND LICENSE

Top


Geo-Coder-Cache documentation  | view source Contained in the Geo-Coder-Cache distribution.