gpt4 book ai didi

java - 在 CacheLoader::load 调用期间更新 Guava 缓存中的不相关值是否安全?

转载 作者:行者123 更新时间:2023-12-02 02:42:48 26 4
gpt4 key购买 nike

我想存储 {organizationId, userId} -> userEmail 的缓存,但我可用的 API 会返回给定组织的所有电子邮件。只要我获得了所有这些值,在调用 CacheLoader::load 期间存储它们是否安全?

private final LoadingCache<Pair<UUID, UUID>, String> emailCache = CacheBuilder
.newBuilder()
.maximumSize(10000)
.build(new CacheLoader<Pair<UUID, UUID>, String>() {
@Override
public String load(final Pair<UUID, UUID> key) throws Exception {
final UUID orgId = key.getValue0();
final List<User> users = remoteService.getAllUsers(orgId);
final Map<Pair<UUID, UUID>, String> updates = new HashMap<>();
for (User user : users) {
updates.put(Pair.with(orgId, user.getId()), user.getEmail());
}

// is this safe?
emailCache.putAll(updates);

return updates.get(key);
}
});

最佳答案

不,不是,因为这可能会导致竞争。另一方面,使用 CacheLoader.loadAll 执行此操作是安全的,它专门记录了它可以返回包含比请求的条目更多的条目的映射。

关于java - 在 CacheLoader::load 调用期间更新 Guava 缓存中的不相关值是否安全?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45156000/

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