, and setting the below compiler arguments seems to make a near-zero impact on performance.
Does anyone have experience or suggestions on changes that DO make improvements?
are already default. everything aside from indy affects compile time but not runtime. indy lambdas reduce classes but generates classes during bootstrap so that's no different. the runtime difference of indy lambdas is insignificant. the runtime difference of indy string concat is not necessarily positive. https://youtrack.jetbrains.com/issue/KT-50142
ephemient
02/11/2022, 8:01 PM
you'll get more mileage out of tuning GC and maybe hotspot parameters than compile parameters
g
Gavin Ray
02/11/2022, 8:24 PM
Ahh that is really useful information, appreciate it -- thank you! 🙏