我是 Hazelcast 的新手,并使用 Spring boot Hazelcast 开始了一个新项目。现在我正在尝试将 Hazelcast 与 spring boot 集成。很多人有不同的看法。但是 JCache 是集成 Spring boot 和 Hazelcast 的最佳方式吗?
1 回答
@kishore-josyula,Jcache 只是将 Hazelcast 与 Spring-Boot 集成的一种方式。Hazelcast 是通过 JCache 和 Spring Cache Annotations 实现 Spring Cache 抽象的提供者之一。(见https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-caching.html#_supported_cache_providers)
Hazelcast IMap 和 JCache 具有不同的功能。您可以比较并决定:
http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#map http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#hazelcast -jcache
IMap
如果您对使用 Jcache 没有任何要求,我建议您首先使用默认集成并查看它对您的工作方式。看一些例子:
https://github.com/hazelcast/hazelcast-code-samples/tree/master/hazelcast-integration/spring-cache-manager https://github.com/gokhanoner/hazelcast-spring-cache-readtimoeut