如何验证 EHCache 的多播自动发现缓存复制是否正常工作?
我已经设置了 EHCache,并使用其有关如何设置多播的库存建议:
<cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446"/>
<cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="port=40001, socketTimeoutMillis=2000"/>
然后我在两台计算机上启动我的应用程序。我如何查看它们是否发现了彼此并使彼此的缓存无效?
干杯
尼克
I've set up EHCache with its stock suggestion on how to set up multicast:
<cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446"/>
<cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="port=40001, socketTimeoutMillis=2000"/>
Then I fire my app up on two machines. How can I see whether they discover one-another and invalidate one-anothers caches?
Cheers
Nik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过查看 EhCache 生成的任何日志记录?这似乎是一个很好的起点。
Have you tried to look at any logging produced by EhCache? This would seem like a good place to start.
似乎仅启用此功能并不会使缓存变得分布式。对于每个缓存,添加如下内容:
然后它开始正常运行。
It seems that just enabling this does not make the caches distributed. For each cache, add something like the following:
Then it starts ticking just fine.