Symfony calls the PHP garbage collector on Ubuntu 14.04 even when session.gc_probability is set to 0
I found it, I guess the latest version of symfony is overwriting this by default when using the app_dev.php. The Symfony FrameworkBundle is setting the session.gc_probability = 1. As of Symfony 3 However, some operating systems do their own session handling and set the session.gc_probability variable to 0 to stop PHP doing garbage collection. That’s … Read more