如何线程安全更新loadingcache值guava map
How to thread-safe update loadingcache value guava map
为了测试,我在 addCache 方法中创建并添加了一个地图。该卡有一个键“a”和一个值“1111”。并为 LoadingCache 键“b”。
接下来,我想将值“1111”更新为值“2222”。为此,我从 main 方法传递了所有必要的参数以查找值“1111”。
如何以线程安全的方式将“1111”更新为“2222”?
public class TestCache {
private LoadingCache<String, Map<String, String>> attemptsCache;
public TestCache() {
attemptsCache = CacheBuilder.newBuilder()
.maximumSize(10000)
.expireAfterWrite(1, TimeUnit.HOURS)
.build(new CacheLoader<String, Map<String, String>>() {
@Override
public Map<String, String> load(@Nonnull final String key) {
return Map.of();
}
});
}
public void addCache(final String pathKey, final String inputKey, final String nameValue) {
Map<String, String> map = new HashMap<>();
map.put("a", "1111");
attemptsCache.put("b", map);
// Next, you need to update the map value
}
public static void main(String[] args) throws ExecutionException {
new TestCache().addCache("b","a","2222");
}
}
对于该特定场景,您可以只调用 put
,这会进行线程安全更新。对缓存的单独修改始终是线程安全的。
为了测试,我在 addCache 方法中创建并添加了一个地图。该卡有一个键“a”和一个值“1111”。并为 LoadingCache 键“b”。
接下来,我想将值“1111”更新为值“2222”。为此,我从 main 方法传递了所有必要的参数以查找值“1111”。
如何以线程安全的方式将“1111”更新为“2222”?
public class TestCache {
private LoadingCache<String, Map<String, String>> attemptsCache;
public TestCache() {
attemptsCache = CacheBuilder.newBuilder()
.maximumSize(10000)
.expireAfterWrite(1, TimeUnit.HOURS)
.build(new CacheLoader<String, Map<String, String>>() {
@Override
public Map<String, String> load(@Nonnull final String key) {
return Map.of();
}
});
}
public void addCache(final String pathKey, final String inputKey, final String nameValue) {
Map<String, String> map = new HashMap<>();
map.put("a", "1111");
attemptsCache.put("b", map);
// Next, you need to update the map value
}
public static void main(String[] args) throws ExecutionException {
new TestCache().addCache("b","a","2222");
}
}
对于该特定场景,您可以只调用 put
,这会进行线程安全更新。对缓存的单独修改始终是线程安全的。