gpt4 book ai didi

从头开始创建缓存时的 Java 和线程安全

转载 作者:行者123 更新时间:2023-12-01 17:19:19 24 4
gpt4 key购买 nike

下面的代码线程安全吗?

private static HashMap<String, String> cache = null;

public static String getInfo(String key) {
populateCache();

return cache.containsKey(key) ? cache.get(key) : null;
}

private static void populateCache() {
if (cache == null) {
cache.put("hello", "world");

// ... more population logic here
}
}

如果不是,我该怎么做才能使其线程安全?

编辑:感谢您的回答,我将尝试 ConcurrentHashMap。然而,我错过了一些东西..我实际上在这里将一个单独的 Foo 类的对象传递给 getInfo() :

public static Bar getInfo(Foo object) {
object.someProperty = concurrentHashMapCache.get('something');

return Bar.createFromFoo(object);
}

只要不同的线程向 getInfo 传递不同的 Foo 对象,上面的代码就应该可以工作,对吧?

最佳答案

Java 中的 HashMap不是线程安全的。如果您想要线程安全版本,请使用 ConcurrentHashMap: http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentHashMap.html

关于从头开始创建缓存时的 Java 和线程安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19870027/

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