gpt4 book ai didi

java - 即使数据来自 Ehcache,c3p0 也始终调用 commit

转载 作者:行者123 更新时间:2023-12-01 10:47:10 25 4
gpt4 key购买 nike

我有一个网络服务,它进行只读调用(一堆选择查询)以从数据库获取数据。但它只是第一次调用数据库,之后所有涉及的实体都使用 Ehcache 缓存在 hibernate 二级缓存中。问题是,即使我的请求没有进行任何数据库调用来获取数据,应用程序也会始终对数据库进行提交调用,这会影响我的 Web 服务响应时间。

我的 Web 服务响应时间为 90 毫秒,其中提交调用始终贡献 35 毫秒(40%)。数据源配置为带有数据源类 com.mchange.v2.c3p0.ComboPooledDataSource 的 spring bean,如下所示。

它正在为每次调用 Web 服务时对数据库进行提交调用,我可以在从 appdynamics 获取的调用图中看到它。对于请求中涉及的所有条目,缓存命中率为 100%。

enter image description here

<bean id="catalogReadDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="oracle.jdbc.driver.OracleDriver" />
<!-- jdbc properties -->
<property name="jdbcUrl"
value="XXXXXXXXXXXX" />
<property name="user" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />

<!-- c3P0 properties -->
<property name="acquireIncrement" value="${c3p0.acquireIncrement}" />
<property name="minPoolSize" value="${c3p0.minPoolSize}" />
<property name="maxPoolSize" value="${c3p0.maxPoolSize}" />
<property name="maxStatements" value="${c3p0.maxStatements}" />
<property name="maxIdleTime" value="${c3p0.maxIdleTime}" />
<property name="preferredTestQuery" value="${c3p0.preferredTestQuery}" />
<property name="idleConnectionTestPeriod" value="${c3p0.idleConnectionTestPeriod}" />
<property name="testConnectionOnCheckin" value="${c3p0.testConnectionOnCheckin}" />
<property name="unreturnedConnectionTimeout" value="${c3p0.unreturnedConnectionTimeout}" />
<property name="checkoutTimeout" value="${c3p0.checkoutTimeout}" />

<!-- The below property is not set because we have feeds which require
a lot of connections. Resetting the connectionPool size to minPoolSize might
not be ideal. Instead we'd use maxIdleTime and maxConnectionAge return unused
connections. -->
<!-- <property name="maxIdleTimeExcessConnections" value="${c3p0.maxIdleTimeExcessConnections}"
/> -->

<!-- The below parameters can be set to prevent connection leaks. Ideally,
the application should close all connections, in which case they'll be returned
to the pool. -->
<!-- <property name="unreturnedConnectionTimeout" value="unreturnedConnectionTimeout"
/> -->
<!-- <property name="debugUnreturnedConnectionStackTraces" value="debugUnreturnedConnectionStackTraces"
/> -->
</bean>

最佳答案

Connection 上的事务划分相关调用仍然会发生。您可以使用 Spring 的 LazyConnectionDataSourceProxy (文档为 here )之类的东西来避免在不需要时发送这些内容。

关于java - 即使数据来自 Ehcache,c3p0 也始终调用 commit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34103927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com