I am trying to clean the cache of my application
But once I run the
php console cache:clear --env=prod -vvv
It stays running... The application in the webserver alos stop responding.
I tried to add -vvv but it doesn't show any comments.
At the end I always have to stop the process by tapping Ctrl C
What could be? How could I debug that?
One additional question: how long normally it should take to clean the cache?
/var/cache/proddirectory? Also you could try with--no-warmupoption. Maybe it's warming up the cache taking so long.rm -rf /var/cache/prod/*(be careful) and then warm it back up withphp bin/console cache:warmup. This isn't going to tell you what's wrong, but it may give you insight as if to wether it's hanging on warmup or not.