Symphony 2 ESI 缓存

Symfony 2 ESI Cache

我有一个在我的所有页面中调用的操作(仅限登录用户),该操作从我的 Twitter 帐户中检索最近的推文。

API 访问受限,因此我希望此操作的结果在缓存中保留 10 分钟

public function socialAction(){

   $consumerKey = $this->container->getParameter('consumer_key');
   $consumerSecret = $this->container->getParameter('consumer_secret');
   $accessToken = $this->container->getParameter('access_token');
   $accessTokenSecret = $this->container->getParameter('access_token_secret');

   // on appel l'API
   $tweet = new TwitterOAuth($consumerKey, $consumerSecret, $accessToken, $accessTokenSecret);
   $screen_name = "blabla";
   $tweets = $tweet->get('statuses/user_timeline', [
       'screen_name' => $screen_name,
       'exclude_replies' => true,
       'count' => 50
   ]);
   $tweets = array_splice($tweets, 0, 5);

   $response = $this->render('GestionJeuBundle:Default:social.html.twig', array("tweets" => $tweets));

   $response->setPublic();
   $response->setSharedMaxAge(600);

   return $response;

}

为了启用缓存我做了以下更改

app/config/config.yml

framework:
    esi: { enabled: true }
    fragments: { path: /_proxy }

app/AppCache.php


<?php

require_once __DIR__.'/AppKernel.php';

use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;

class AppCache extends HttpCache
{
    protected function getOptions()
    {
        return array(
            'debug'                  => false,
            'default_ttl'            => 0,
            'private_headers'        => array('Authorization', 'Cookie'),
            'allow_reload'           => false,
            'allow_revalidate'       => false,
            'stale_while_revalidate' => 2,
            'stale_if_error'         => 60,
        );
    }
}

web/app_dev.php

<?php

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Debug\Debug;

// If you don't want to setup permissions the proper way, just uncomment the following PHP line
// read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information
//umask(0000);

// This check prevents access to debug front controllers that are deployed by accident to production servers.
// Feel free to remove this, extend it, or make something more sophisticated.
if (isset($_SERVER['HTTP_CLIENT_IP'])
    || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
    || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', '.....', 'fe80::1', '::1'))
) {
    header('HTTP/1.0 403 Forbidden');
    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
}

$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
Debug::enable();

require_once __DIR__.'/../app/AppKernel.php';
require_once __DIR__.'/../app/AppCache.php';

$kernel = new AppKernel('dev', true);
$kernel->loadClassCache();
$kernel = new AppCache($kernel);

// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();

$kernel->terminate($request, $response);
error_log($kernel->getLog());

尽管页面在每次页面刷新时都会更新(经过测试,它在生产环境中做的事情完全相同,但 app.php 也发生了变化)

我是否误解或忘记了什么?

预先感谢您的帮助。

编辑解决:我正在用

渲染这个动作
{{render(controller("GestionJeuBundle:Default:social")) }}

更改它
{{render_esi(controller("GestionJeuBundle:Default:social")) }}

解决我的问题

和煦

就我上周的实验而言,值得注意的是,如果您在 Symfony 中使用调试环境,Varnish 总是 将您的请求传递给后端。

我正在用

渲染这个动作
{{render(controller("GestionJeuBundle:Default:social")) }}

更改为

{{render_esi(controller("GestionJeuBundle:Default:social")) }}

解决我的问题