Share Hibernate Second-Level Cache - 多个应用程序可以共享同一个缓存吗
Posted
技术标签:
【中文标题】Share Hibernate Second-Level Cache - 多个应用程序可以共享同一个缓存吗【英文标题】:Share Hibernate Second-Level Cache - Can multiple applications share the same cache 【发布时间】:2019-07-30 10:04:01 【问题描述】:我有两个应用程序使用具有相同架构的相同数据库。应用程序 A 将读写表 A。应用程序 B 将仅读取表 A。
如果我在两个应用程序中都配置了二级缓存。应用程序 B 不会检索应用程序 A 之前更新了表 A 中的记录的更新值。
我想配置同一个hibernate config,让多个应用共享同一个缓存(在这种情况下,应用B可以获取更新后的值)
我读了一些***,但仍然不适合我。
我正在使用 hibernate 5 并使用 Ehcache 进行缓存管理。
知道如何实现吗?可以参考一下吗?
这是我的两个应用程序中的一些休眠属性
Sprint 休眠配置:
<bean id="mySessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="dataSource" ref="myDataSource" />
<property name="annotatedClasses">
<list>
...
</list>
</property>
<property name="hibernateProperties">
<props>
<!-- Debug -->
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.format_sql">false</prop>
<prop key="hibernate.hbm2ddl.auto">none</prop>
<!-- Level two caching -->
<prop key="hibernate.cache.provider_class">=net.sf.ehcache.hibernate.EhCacheProvider</prop>
<prop key="hibernate.cache.use_second_level_cache">true</prop>
<prop key="hibernate.cache.use_query_cache">false</prop>
<prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</prop>
<prop key="net.sf.ehcache.configurationResourceName">../conf/ehcache.xml</prop>
</property>
</bean>
ehcache.xml:
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd"
updateCheck="true" monitoring="autodetect"
dynamicConfig="true" >
<diskStore path="java.io.tmpdir"/>
<!-- Default cache settings -->
<defaultCache
maxElementsInMemory="100000"
eternal="true"
timeToIdleSeconds="300"
timeToLiveSeconds="300"
overflowToDisk="false"
maxElementsOnDisk="10000000"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="300"
memoryStoreEvictionPolicy="LRU">
</defaultCache>
【问题讨论】:
【参考方案1】:您可以考虑使用像 Hazelcast 这样的分布式缓存。事实上,Hazelcast 内置了与 Hibernate 的集成,可以轻松插入二级缓存
【讨论】:
以上是关于Share Hibernate Second-Level Cache - 多个应用程序可以共享同一个缓存吗的主要内容,如果未能解决你的问题,请参考以下文章
react-native-share方法share单开Android 11 Play Store
SHARE NOTHING SHARE EVERYTHING
PHP致命错误:require_once():无法打开所需的'Mail.php'(include_path ='。:/usr/share/pear:/usr/share/php')