php/symfony experts!
This question especially for you.
try this code example
/**
* @Route("/your-route", name="your-route")
*/
public function indexAction()
{
$this->get('session')->save();
sleep(10);
return $this->render('template.html.twig');
}
requests are performing in parallel in different browsers as expected, but why sequentially in the same browser?