We hit performance issues when scanning large monorepos. Using Gradle daemon can improve performance by 15-75%, as per documentation: https://docs.gradle.org/current/userguide/gradle_daemon.html.
We blocked using it by forcing the --no-daemon flag because it fails on Windows, as per this comment but it seems to work and improve performance on Unix based systems.
What this does
We hit performance issues when scanning large monorepos. Using Gradle daemon can improve performance by 15-75%, as per documentation: https://docs.gradle.org/current/userguide/gradle_daemon.html. We blocked using it by forcing the
--no-daemon
flag because it fails on Windows, as per this comment but it seems to work and improve performance on Unix based systems.