gpt4 book ai didi

java - 有没有人在 Hibernate 中使用 Elasticache 作为其二级缓存?

转载 作者:行者123 更新时间:2023-12-04 17:03:17 25 4
gpt4 key购买 nike

我发现一些线程说这是可行的,但没有找到具体的说明或配置信息。

我也想从 Beanstalk 做到这一点:应用程序应该部署到 beanstalk,并使用将 hibernate 指向 elasticache 实例的配置。

最佳答案

是的,我们能够使用二级缓存配置 hibernate ..虽然不是使用 beanstalk.. 这段代码应该可以帮助你。

<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.format_sql">false</prop>


<prop key="hibernate.generate_statistics">true</prop>
<prop key="hibernate.cache.use_structured_entries">true</prop>
<!-- prop key="hibernate.hbm2ddl.auto" >update</prop -->
<prop key="hibernate.jdbc.batch_size">100</prop>


<prop key="hibernate.cache.provider_class">com.googlecode.hibernate.memcached.MemcachedCacheProvider
</prop>
<!-- Cache disabled -->
<prop key="hibernate.cache.use_query_cache">true</prop>
<prop key="hibernate.cache.use_second_level_cache">true</prop>
<prop key="hibernate.memcached.servers"><elasticachehostname>:11211</prop>
<prop key="hibernate.memcached.cacheTimeSeconds">300</prop>



<prop key="hibernate.memcached.connectionFactory">DefaultConnectionFactory</prop>
<prop key="hibernate.memcached.clearSupported">false</prop>


</props>

您需要 hibernate memcached jar 也是

关于java - 有没有人在 Hibernate 中使用 Elasticache 作为其二级缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8765913/

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