Oracle 参数 CLIENT_RESULT_CACHE_LAG 官方解释,作用,如何配置最优化建议

本站中文解释

CLIENT_RESULT_CACHE_LAG参数用于控制客户端结果缓存与数据库结果缓存之间的延迟阈值。它是以会话级控制,也就是一个会话需要通过设置这个参数来启用客户端结果缓存功能。

CLIENT_RESULT_CACHE_LAG参数设置为0表示立即缓存结果;设置为-1表示客户端结果缓存功能关闭,不使用客户端结果缓存。如果CLIENT_RESULT_CACHE_LAG设置的值大于0,表示结果应等待指定的时间之后才会被缓存,单位以秒计算。

要正确设置CLIENT_RESULT_CACHE_LAG参数,必须满足两个条件,1是数据库结果缓存应该提前完成,2是客户端结果缓存应该早于提交事务完成才会缓存。因此,正确设置CLIENT_RESULT_CACHE_LAG参数需要根据实际环境和应用场景,结合数据库结果缓存消耗的时间(DATA_CACHE_REFRESH_INTERVAL参数设置),客户端结果缓存应该提前多久才可以正确设置值,通常是设置为60%到90%的数据库结果缓存消耗时间。

官方英文解释

CLIENT_RESULT_CACHE_LAG specifies the maximum time (in milliseconds) since the last round trip to the server, before which the OCI client query execute makes a round trip to get any database changes related to the queries cached on the client.

Property Description

Parameter type

Big integer

Syntax

CLIENT_RESULT_CACHE_LAG = integer

Default value

3000

Modifiable

No

Modifiable in a PDB

Yes

Range of values

0 to operating system-dependent

Basic

No

See Also:

Oracle Call Interface
Programmer’s Guide
for more information about the client query cache feature


数据运维技术 » Oracle 参数 CLIENT_RESULT_CACHE_LAG 官方解释,作用,如何配置最优化建议