I realised that I have a lot of gradle processes t...
# chicago
b
I realised that I have a lot of gradle processes that are left around even after exiting intellij. And they use a lot of memory. Is there a way to tell gradle to exit itself after a give time?
d
you mean gradle daemons?
you can check whats running with
gradle --status
and stop them using
gradle --stop
unsure if there is an automated way to stop them
*you could also disable daemons but it might slow down your build
b
yes
I'll remember to run gradle --stop
I had two of them with two version and they were taking a lot of RAM
I did kill SIGTERM them before, that should be ok too
thx