void |
StatementCacheListener.clearedStmtCacheForConn(StatementCache.Config ctype,
Thread t,
Long dbConKey) |
StatementCache.clear(Connection) was called so its StmtCache was released.
|
void |
StatementCacheListener.clearedStmtCacheMapForThread(StatementCache.Config ctype,
Thread t) |
StatementCache.clear was called so its listeners, StmtCacheMap and StmtCaches have been released.
|
void |
StatementCacheListener.evictedLruStmt_MaxEntries(StatementCache.Config ctype,
StatementCacheListener.StmtType type,
String sql,
long createdOnTs,
long accessedCn,
long maxCacheEntries) |
The least recently used statement was evicted, StmtCache would have exceeded maxEntries.
|
void |
StatementCacheListener.evictedLruStmt_MaxTtl(StatementCache.Config ctype,
StatementCacheListener.StmtType type,
String sql,
long createdOnTs,
long accessedCn,
long ageMillisMax) |
The least recently used statement was evicted, it exceeded its maxTtl.
|
void |
StatementCacheListener.evictLruStmtException(StatementCache.Config ctype,
StatementCacheListener.StmtType type,
Throwable throwable) |
An exception was thrown while trying to close an evicted Statement.
|
void |
StatementCacheListener.newStmtCacheForNewConn(StatementCache.Config ctype,
Thread t,
Long dbConKey,
String stmtSql) |
An uncached Connection from prepare/callStatement request created a new StmtCache in StmtCacheMap.
|
void |
StatementCacheListener.newStmtCacheMapForNewThread(StatementCache.Config ctype,
Thread t) |
A new Thread was encountered resulting in a new ThreadLocal StmtCacheMap.
|
void |
StatementCacheListener.preparedCall(StatementCache.Config ctype,
Thread t,
Long dbConKey) |
|
void |
StatementCacheListener.preparedStmt(StatementCache.Config ctype,
Thread t,
Long dbConKey) |
|
void |
StatementCacheListener.reusedStmt(StatementCache.Config ctype,
Thread t,
Long dbConKey) |
|
void |
StatementCacheListener.setStmtCacheMaxEntries(StatementCache.Config ctype,
Thread t,
Integer maxStmts) |
Per prepare/callStatement, the eldest Statement is evicted if cache has this many entries.
|
void |
StatementCacheListener.setStmtCacheMaxTtl(StatementCache.Config ctype,
Thread t,
Long maxTTL) |
Per prepare/callStatement call, the eldest Statement is evicted if older than this value.
|