Oracle 参数 JAVA_JIT_ENABLED 官方解释,作用,如何配置最优化建议
本站中文解释
JAVA_JIT_ENABLED 是Oracle数据库中的一个参数,用来指定是否启用JIT编译器。JIT(Just In Time)编译器是用来及时编译一些JAVA方法成为原生本机代码,从而提高JAVA执行效率。
该参数允许值为TRUE和FALSE,TRUE表示启用JIT编译器,FALSE表示禁用JIT编译器。
如果数据库中有大量的JAVA方法的话,那么建议设置为TRUE,这样可以有效提高JAVA方法的执行效率。
要正确设置参数,可以通过以下语句来实现:
ALTER SYSTEM SET JAVA_JIT_ENABLED=TRUE;
可以通过以下语句来查看参数值是否设置正确:
SELECT NAME, DISPLAY_VALUE FROM V$PARAMETER WHERE NAME=’JAVA_JIT_ENABLED’;
官方英文解释
JAVA_JIT_ENABLED
enables or disables the Just-in-Time (JIT) compiler for the Oracle Java Virtual Machine (OracleJVM) environment.
Property | Description |
---|---|
Parameter type |
Boolean |
Default value |
Operating system-dependent |
Modifiable |
|
Modifiable in a PDB |
Yes |
Range of values |
|
Basic |
No |
For platforms that support the JIT compiler, the default value of this parameter is true
; otherwise the default value is false
. Attempting to set this parameter to true
on unsupported platforms will result in an error.
See Also:
Oracle Database Java
Developer’s Guide for more information about setting this parameter