The docs state a usage like attributes: { _controller: ^WhateverFrontendBundle:Page:.* } to match certain controllers/actions for caching, but i could not get it to work. After inspecting the Request object and the actual _controller value this is how i got it to work
attributes: { _controller: ^Whatever\\FrontendBundle\\Controller\\PageController\:\:.* }
Am i doing something wrong or is this a bug ?