0

A little question about cache and render controller.

I use $kernel->loadClassCache() in my app.php, to activate the app cache. So it seems to work, my site is now very fast :).

Now I want to have a wallpaper displayer, on each refresh I want to show another wallpaper, each time. But seems impossible with the very strong cache of symfony.

To display my wallpapers, i use a render controller, like this

{{ render(controller("SiteBundle:Sidebar:sidebarWallpapers")) }}

Is it a way to never cache this render part ? Or set a very short cache time ?

Thanks!

abenevaut
  • 768
  • 1
  • 9
  • 23

1 Answers1

0

I had to activate ESI cache to work with default Symfony app cache : Symfony2: ESI setMaxAge Cache

Community
  • 1
  • 1
abenevaut
  • 768
  • 1
  • 9
  • 23