Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cache folder grown very very fast

Tags:

symfony

I'm use Symfony2 into one critical application. For each client (each tab in browser is client) JS through AJAX request data each second. And folder /cache/dev/profiler/ grown really fast! 17Gb for 2 days! How can i disable this writing?

like image 297
Neka Avatar asked Feb 18 '13 14:02

Neka


1 Answers

There is the option in config_dev.yml

framework:
    profiler: { only_exceptions: true }

It was false, now all going normal.

like image 64
Neka Avatar answered Sep 19 '22 12:09

Neka