Skip to content

Instantly share code, notes, and snippets.

@rossriley
Last active December 18, 2015 11:18
Show Gist options
  • Save rossriley/d52a9dbe54758c33fd32 to your computer and use it in GitHub Desktop.
Save rossriley/d52a9dbe54758c33fd32 to your computer and use it in GitHub Desktop.
$app['cache'] = $app->share(
function (Application $app) {
$memcache = new Memcache();
$memcache->connect('127.0.0.1', 11211);
$cacheDriver = new \Doctrine\Common\Cache\MemcacheCache();
$cacheDriver->setMemcache($memcache);
return $cacheDriver;
}
);
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment