Module statement_cache

Module statement_cache 

Source
Expand description

Statement caching for improved performance

This module provides client-side statement caching to avoid repeated parsing of SQL statements on the Oracle server. When a statement is executed, its cursor ID and metadata are cached. Subsequent executions of the same SQL text can reuse the cached cursor, skipping the parse phase.

Structsยง

StatementCache
Client-side statement cache using LRU eviction