Merge pull request #301 from annando/1409-hourly-cache

Hourly cache for the curweather addon
This commit is contained in:
Tobias Diekershoff
2015-09-13 10:31:04 +02:00

View File

@@ -57,7 +57,7 @@ function getWeather( $loc, $units='metric', $lang='en', $appid='', $cachetime=0)
'icon' => (string)$res->weather['icon']
);
set_pconfig(local_user(), 'curweather', 'last', $now->getTimestamp());
Cache::set('curweather'.md5($url), serialize($r));
Cache::set('curweather'.md5($url), serialize($r), CACHE_HOUR);
return $r;
}