如何在 MS SQL RDBMS 中为 HikariCP 连接池启用语句缓存?
对于 MySQL,它是通过:
dataSource.cachePrepStmts=true
dataSource.prepStmtCacheSize=250
dataSource.prepStmtCacheSqlLimit=2048
对于 PostgreSQL,通过:
hikari.dataSource.prepareThreshold=1
对于 Oracle,以下工作:
dataSource.implicitCachingEnabled=true
and adjusting via setMaxStatements() method of OracleDataSource
但我没有找到任何适用于 MS SQL 2012 及更高版本的东西。