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")) }}

решить мою проблему

Hexune

0

Решение

я рендерил это действие с

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

меняя его на

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

решить мою проблему

2

Другие решения

Насколько я экспериментировал последние недели, стоит отметить, что если вы используете отладочную среду в Symfony, Varnish всегда проходит мимо вашего запроса к бэк-энду.

0

По вопросам рекламы [email protected]