0

我想存储 的缓存{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);
            }
        });
4

1 回答 1

2

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

于 2017-07-18T01:35:09.190 回答