configurable expiry for cached Geonames data defaults to 90 days

This commit is contained in:
Evan Prodromou 2009-12-04 16:25:05 -05:00
parent 41f10b742c
commit 098426cee9
1 changed files with 12 additions and 11 deletions

View File

@ -54,6 +54,7 @@ class GeonamesPlugin extends Plugin
public $host = 'ws.geonames.org';
public $username = null;
public $token = null;
public $expiry = 7776000; // 90-day expiry
/**
* convert a name into a Location object
@ -197,6 +198,9 @@ class GeonamesPlugin extends Plugin
function onLocationFromLatLon($lat, $lon, $language, &$location)
{
$lat = rtrim($lat, "0");
$lon = rtrim($lon, "0");
$loc = $this->getCache(array('lat' => $lat,
'lon' => $lon));
@ -380,7 +384,11 @@ class GeonamesPlugin extends Plugin
return null;
}
return $c->get($this->cacheKey($attrs));
$key = $this->cacheKey($attrs);
$value = $c->get($key);
return $value;
}
function setCache($attrs, $loc)
@ -391,18 +399,11 @@ class GeonamesPlugin extends Plugin
return null;
}
$c->set($this->cacheKey($attrs), $loc);
}
$key = $this->cacheKey($attrs);
function clearCache($attrs)
{
$c = common_memcache();
$result = $c->set($key, $loc, 0, time() + $this->expiry);
if (empty($c)) {
return null;
}
$c->delete($this->cacheKey($attrs));
return $result;
}
function cacheKey($attrs)