我想存储{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);
}
});
答案 0 :(得分:2)
不,不是,因为这可能导致比赛。另一方面,使用CacheLoader.loadAll执行此操作是安全的,CacheLoader.loadAll特别记录了它可以返回包含的条目多于请求的映射。