我在 Hazelcast 2.1 和 Spring 3.1 中使用 Spring @Cacheable 注释。
@Cacheable("testCache")
public MyObject testMethod(int testParam);
//After method call
MyObject test = Hazelcast.getMap("testCache").get("key")
test.setSomeProp() //This line causes an update to the cache since it is reference.
是否可以从映射返回缓存值的克隆/副本,而不是从Hazelcast.getMap()引用 ?
即我想要一个像 EhCache 中的 copyOnRead 功能。请参阅EhCache 文档