- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 Java 并发实践
,但一些代码让我感到困惑:
private final ConcurrentHashMap<A, Future<V>> cache = new ConcurrentHashMap<A, Future<V>>();
private final Computable<A, V> c;
public Memoizer(Computable<A, V> c) {
this.c = c;
}
/* (non-Javadoc)
* @see com.demo.buildingblocks.Computable#compute(java.lang.Object)
*/
@Override
public V compute(final A arg) throws InterruptedException {
while (true) {
Future<V> f = cache.get(arg);
if (f == null) {
//
Callable<V> eval = new Callable<V>() {
@Override
public V call() throws Exception {
return c.compute(arg);
}
};
FutureTask<V> ft = new FutureTask<V>(eval);
// what will happen when two threads arrive here at the same time?
f = cache.putIfAbsent(arg, ft);
if (f == null) {
f = ft;
ft.run();
}
}
try {
return f.get();
} catch (CancellationException e) {
cache.remove(arg, f);
} catch (ExecutionException e) {
launderThrowable(e);
}
}
}
我就是看不懂,因为putIfAbsent
只能保证put
操作是原子的,而且都返回null,如果两个线程都能进入 >运行
方法?
最佳答案
putIfAbsent
保证线程安全,不仅是因为它不会破坏您的数据,而且还因为它总是在一个最新的状态下工作数据副本的日期。
此外,如果存在这样的值,它不会返回 map 中的先前值。因此第一次调用 putIfAbsent
会成功,并返回 null
,因为没有先前的值。第二次调用将阻塞,直到第一次调用成功,然后返回放入映射中的第一个值,导致永远不会调用第二个 run()
。
关于java - 两个线程同时执行cache.putIfAbsent会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20171896/
是否可以使用 putIfAbsent 或其任何等效项(如短路运算符)。 myConcurrentMap.putIfAbsent(key,calculatedValue) 我希望如果已经存在计算值,则不
我正在使用 Cassandra 并使用 Datastax Java 驱动程序。我正在尝试通过缓存来重用准备好的语句。 private static final ConcurrentHashMap
我想在我的应用程序中使用 ConcurrentSkipListMap,但不太确定如何处理它。查看源代码,我没有找到任何 Lock 获取的 synchronized 语句。 Documentation也
我有这个 map 定义: TreeMap > 它可能包含数百万个条目,我还需要一个“自然顺序”(这就是我选择 TreeMap 的原因,尽管如果需要我可以编写一个比较器)。 所以,为了向 map 添加元
public static void main(String args[]) throws Exception { ConcurrentHashMap dps = new C
我在使用 putIfAbsent 时遇到问题,第二个线程将在第一个线程完成使用 pk 更新值之前尝试访问该值。 示例代码。 public Object getLookupValue(final Cl
我有一个 ConcurrentHashMap 和一个将字符串放入映射中的方法,然后我根据插入的值在同步块(synchronized block)中执行一些操作。 putIfAbsent 返回与指定键关
我想使用一个等同于 ConcurrentMap 的 map (我想要等同于 putIfAbsent 方法)但这不会强制我创建事先反对。 例如当我这样做时: m.putIfAbsent( key, ne
ConcurrentMap 指定putIfAbsent() 的返回值为: the previous value associated with the specified key, or null i
我是 Java 世界的新手,正在探索 concurrentHashMap,在探索 concurrentHashMap API 时,我发现了 putifAbsent()方法 public V putIf
我发布了一个答案 here其中演示使用 ConcurrentMap 的 putIfAbsent 方法的代码读取: ConcurrentMap map = new ConcurrentHashMap (
在his talk about Effective Java在 54:15 Joshua Bloch 建议在 putIfAbsent 之前使用 get 以提高性能和并发性。这让我想到了为什么这个优化还
查看接口(interface)Map中默认方法putIfAbsent的实现, default V putIfAbsent(K key, V value) { V v = get(key);
在 Java 中,我想向常规映射添加一个 getOrAdd 方法,就像在 ConcurrentHashMap 上添加 putIfAbsent 一样。 此外,对于某个键,我想存储一个项目列表。这是我的尝
我有一种情况,调用者希望根据当前实例(标识符)获取 bean 的对象。现在,如果当前实例存在 bean 对象,则不应再次创建它。所以有两种方法(我认为)可以做到这一点 - 1. Using putIf
我有一个 java.util.concurrent.ConcurrentHashMap,如果它不存在,我想放置它,但如果存在,我也想将其删除。像这样的东西: ConcurrentHashMap map
我有一个像这样的 ConcurrentMaps 的 ConcurrentMap... ConcurrentMap> mapsMap = new ConcurrentHashMap<>(); 现在在某些
从昨天开始,我一直在阅读并发性知识,我不太了解...但是有些事情开始变得清晰... 我理解为什么双重检查锁定不安全(我想知道这种罕见情况发生的概率是多少)但是 volatile 修复了 1.5 + 中
简介 这是关于 infinispan 缓存的,但我认为这是一个足够通用的问题。 在我的 infinispan 缓存中,我使用 putIfAbsent 方法将项目输入到缓存中,并使用 remove 方法
我在 tomcat 下部署了一个 java web 应用程序,突然 API 的响应时间变慢,如快照所示(抱歉,由于缺乏声誉,我无法发布图像。)。重启tomcat后即可恢复正常。 唯一引起我注意的可疑代
我是一名优秀的程序员,十分优秀!