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

Is it safe to update unrelated values in a Guava cache during a CacheLoader::load call?

我想存储 {organizationId, userId} -> userEmail 的缓存,但是 API 我可以使用给定组织的 returns 所有电子邮件。只要我获得所有这些值,在调用 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 执行此操作是安全的,它专门记录了它可以 return 具有比请求的条目更多的映射。