jdaugherty commented on code in PR #15375:
URL: https://github.com/apache/grails-core/pull/15375#discussion_r2760289348
##########
grails-gradle/plugins/src/main/groovy/org/grails/gradle/plugin/core/GrailsExtension.groovy:
##########
@@ -76,6 +76,14 @@ class GrailsExtension {
*/
boolean micronautAutoSetup = true
+ /**
+ * Whether to enable Groovy's invokedynamic (indy) bytecode instruction
for dynamic Groovy method dispatch.
+ * Disabled by default to improve performance (see GitHub issue #15293).
+ * When enabled, Groovy uses JVM invokedynamic instead of traditional
callsite caching.
+ * To enable invokedynamic in build.gradle: grails { indy = true }
+ */
+ boolean indy = false
Review Comment:
For anyone that generated an application with the 7.0.6+ codeline, it will
now flip it back to false - making this a breaking change.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]