我在用野蝇12号。
无穷大子系统的默认配置定义了一个名为"web“的缓存容器。我试图找出为什么定义这个容器,以及谁使用它,但是到目前为止,在文档中或在google上的任何地方都找不到任何解释。
standalone-full-ha-custom.xml:
<cache-container name="web" default-cache="dist" module="org.wildfly.clustering.web.infinispan">
<transport lock-timeout="60000"/>
<distributed-cache name="dist">
<locking isolation="REPEATABLE_READ"/>
<transaction mode="BATCH"/>
<file-store/>
</distributed-cache>
</cache-container>在这个缓存中存储什么样的数据,哪些组件需要它?
发布于 2018-05-24 12:36:22
web缓存容器用于存储HTTP信息。WildFly的高可用性指南包含关于所有集群服务的信息。
https://stackoverflow.com/questions/50507451
复制相似问题