【发布时间】:2017-07-03 15:42:43
【问题描述】:
有一个带有以下Map字段的java bean:
private Map<String, Long> items;
public Map<String, Long> getItems() {
return items;
}
public void setItems(Map<String, Long> items) {
this.items = items;
}
是否有机会使用Coherence Query Language 为缓存在 Coherence 分布式缓存中的对象更新此 items 字段?
类似:
update "order-cache" set items = new HashMap<String, Long>() {{put("001",2L);}} where key()=”1”
【问题讨论】:
标签: distributed-caching oracle-coherence