[Daemon] Change default Kotlin daemon JVM options

Now, the Kotlin daemon enables parallel GC and uses code cache flushing by default. Also, the default reserved code cache size is adjusted.

^KT-64283 Verification Pending
This commit is contained in:
Alexander.Likhachev
2023-12-21 17:29:07 +01:00
committed by Space Team
parent dbdcce0655
commit 58f7dd1c83
4 changed files with 76 additions and 3 deletions
@@ -181,7 +181,7 @@ fun Iterable<String>.filterExtractProps(vararg groups: OptionsGroup, prefix: Str
data class DaemonJVMOptions(
var maxMemory: String = "",
var maxMetaspaceSize: String = "",
var reservedCodeCacheSize: String = "",
var reservedCodeCacheSize: String = "320m",
var jvmParams: MutableCollection<String> = arrayListOf()
) : OptionsGroup {
override val mappers: List<PropMapper<*, *, *>>