Hello all! When Gradle recompiles build script fil...
# community-support
t
Hello all! When Gradle recompiles build script files during the configuration phase, then this apparently happens single-threaded, as all the other threads are shown as idling. Is there any plan to make this compilation multi-threaded or maybe I'm just missing a flag to enable this? I'm on Gradle 9.1-rc-1.
v
And maybe in the course of "Isolated Projects" also something might happen
j
I think I have already seen some things done in parallel when turning on "Isolated Projects".
Copy code
org.gradle.configuration-cache=true
org.gradle.unsafe.isolated-projects=true
v
Also build script compilation?
t
yes build script compilation is parallel as well when isolated projects are enabled. I turn on isolated projects to compile buildscripts in parralle and then turn it off again
til 1
👍 1
t
Thanks for your answers!