1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
2020-08-28 20:30:24 +08:00

36 lines
887 B
PHP

<?php
namespace App\Providers;
use App\Library\Cache\Backend\Redis as RedisBackend;
use Phalcon\Cache\Frontend\Igbinary as IgbinaryFrontend;
use Phalcon\Config;
class Cache extends Provider
{
protected $serviceName = 'cache';
public function register()
{
/**
* @var Config $config
*/
$config = $this->di->getShared('config');
$this->di->setShared($this->serviceName, function () use ($config) {
$frontend = new IgbinaryFrontend([
'lifetime' => $config->path('cache.lifetime'),
]);
return new RedisBackend($frontend, [
'host' => $config->path('redis.host'),
'port' => $config->path('redis.port'),
'auth' => $config->path('redis.auth'),
'index' => $config->path('cache.db'),
]);
});
}
}