This is probably a stupid question…
If I run a JRuby script from Java, i.e. using:
String script = …
ScriptingContainer container = new
ScriptingContainer(LocalContextScope.SINGLETHREAD);
container.runScriptlet(script);
Does the runtime use JIT compilation?
Is there any way to to get it use AOT compilation?
Cheers