gpt4 book ai didi

java - ConcurrentHashMap put 与 putIfAbsent

转载 作者:太空狗 更新时间:2023-10-29 22:34:42 24 4
gpt4 key购买 nike

Java Docs也就是说,putIfAbsent 等同于

   if (!map.containsKey(key)) 
return map.put(key, value);
else
return map.get(key);

因此,如果键存在于映射中,则它不会更新其值。这是正确的吗?

如果我想根据某些条件更新键值怎么办?说下过期时间等

这会是添加和更新缓存的更好实现吗?

public void AddToCache(T key, V value)
{
V local = _cache.putifabsent(key, value);

if(local.equals(value) && local.IsExpired() == false){
return;
}
// this is for updating the cache with a new value
_cache.put(key, value);
}

最佳答案

So it doesnt update a key's value. is this correct?

没错。它将返回 map 中已有的当前值。

would this be a better impl for adding and updating cache?

有几件事可以让您的实现变得更好。

1. 你不应该使用 putIfAbsent 来测试它是否存在,你应该只在你想确保它不存在时才使用它 putIfAbsent。相反,您应该使用 map.get 来测试它是否存在(或 map.contains)。

    V local = _cache.get(key);
if (local.equals(value) && !local.IsExpired()) {
return;
}

2. 而不是 put 你会想要替换,这是因为竞争条件可能会发生,其中 if 可以被两个或多个线程评估为 false两个(或更多)线程中的哪一个将覆盖另一个线程的放置。

你可以做的是 replace

归根结底,它可能看起来像这样

public void AddToCache(T key, V value) {
for (;;) {

V local = _cache.get(key);
if(local == null){
local = _cache.putIfAbsent(key, value);
if(local == null)
return;
}
if (local.equals(value) && !local.IsExpired()) {
return;
}

if (_cache.replace(key, local, value))
return;
}
}

关于java - ConcurrentHashMap put 与 putIfAbsent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10486413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com