gpt4 book ai didi

跨 AWS 集群的 Spring、Tomcat 8 Ehcache 复制(在 EC2 实例上)

转载 作者:行者123 更新时间:2023-11-28 21:59:46 26 4
gpt4 key购买 nike

在我的 Spring 应用程序中,我使用了以下缓存 (ehcache):

<bean id="statelessTicketCache"
class="org.springframework.security.cas.authentication.EhCacheBasedTicketCache">
<property name="cache">
<bean id="ehcache" class="net.sf.ehcache.Cache" init-method="initialise"
destroy-method="dispose">
<constructor-arg value="casTickets" />
<constructor-arg value="0" />
<constructor-arg value="true" />
<constructor-arg value="false" />
<constructor-arg value="3600" />
<constructor-arg value="900" />
<property name="cacheManager" ref="cacheManager" />
</bean>
</property>
</bean>

在此缓存中,我将访问票证存储到我的 API 后端。一切都与单个节点 Tomcat8 完美配合。但是,当我尝试在我的 AWS 集群中使用 2 个或更多实例与 Load Balancer(ELB) 和 N Tomcats(在 EC2 实例上)时,我遇到了每个节点都使用自己的 statelessTicketCache 实例运行的问题。

我需要在我的集群中复制这个ehcache statelessTicketCache。是否可以 ?如果是这样,您能否为此提供一个示例配置?

已更新

我想,我将从 Ehcache 解决方案中移出,并尝试使用 Redis 配置 statelessTicketCache(AWS Elastic在 Redis 引擎上缓存 )并使用以下实现 https://github.com/vnomics/spring-stateless-ticket-cache-redis Spring CAS 无状态票证缓存Redis

最佳答案

我已经从 Ehcache 解决方案中移出并使用 Redis(Redis 引擎上的 AWS 弹性缓存)配置 statelessTicketCache,实现如下 https://github.com/vnomics/spring-stateless-ticket-cache-redis Spring CAS 无状态票证缓存 Redis。

现在,一切正常。

关于跨 AWS 集群的 Spring、Tomcat 8 Ehcache 复制(在 EC2 实例上),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35301741/

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