use phpFastCache\CacheManager;
$cache = CacheManager::Memcached();
// try to get from Cache first.
$resultsItem = $cache->getItem("identity_keyword")
if(!$resultsItem->isHit()) {
$resultsItem->set($cURL->get("http://www.youtube.com/api/json/url/keyword/page"))->expireAfter(3600*24);
$cache->save($resultsItem);
}
foreach($results as $video) {
// Output Your Contents HERE
}
Created
September 17, 2016 00:11
-
-
Save Geolim4/993ce81d41d5fb2c2d52801d75de3142 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it should be expiresAfter(3600*24) with 's'