Wildfly infinispan 网络缓存容器有什么用?

What is the Wildfly infinispan web cache container for?

我正在使用 Wildfly 12。

infinispan 子系统的默认配置定义了一个名为 "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>

这个缓存中存储了什么样的数据,哪些组件需要它?

web缓存容器用于存储HTTP会话信息。 WildFly 的 High Availability Guide 包含所有集群服务的信息。