使用Redis设置Symfony 3.1缓存组件

时间:2016-10-17 13:09:20

标签: php symfony redis symfony-3.1 symfony-cache

我尝试使用Redis设置Symfony 3.1缓存。我遵循这个教程:

https://symfony.com/blog/new-in-symfony-3-1-cache-component

我安装了predis / predis和SncRedisBundle。

在我的config.yml中我放了

framework:
    cache:
        app: cache.adapter.redis
        default_redis_provider: redis://192.168.34.10
    snc_redis:
     clients:
        default:
            type: predis
            alias: default
            dsn: redis://192.168.34.10
            logging: %kernel.debug%
        cache:
            type: predis
            alias: cache
            dsn: redis://192.168.34.10
            logging: %kernel.debug%
            options:
                connection_timeout: 10
                read_write_timeout: 30

现在,当我尝试通过snc_redis访问redis时,它正常工作。但是当我尝试使用缓存组件时:

public function getLoggedUserAcl($userId)
{
    $cachedResources = $this->cacheAdapter->getItem('acl.rules');
    $cachedResources->expiresAfter(100);

    if ($cachedResources->isHit()) {
        dump('hit');
        $resources = $cachedResources->get();
    } else {
        dump('not-hit');
        $resources = $this->api->getCollection(Resource::class, null, null, [
            'userId' => $userId
        ]);

        $cachedResources->set($resources);
    }

    return $resources;
}

CacheAdapter是@cache.app服务。

它一直转储NOT_HIT。在日志中,REDIS没有任何内容。

你能告诉我我犯了哪些错误或者暗示我可能出错了吗?

1 个答案:

答案 0 :(得分:6)

这里你最重要的是将结果保存到缓存中:

$cachedResources->set($resources);

$this->cacheAdapter->save($cachedResources);