是否有與MapMaker for MultiMaps相當的功能? 目前我創建緩存是這樣的: public static Map<Session,List<Person>> personCache = new MapMaker().weakKeys().makeMap();
多重映射的整點是爲了避免嵌套的列表值。有沒有什麼辦法用弱鍵構造multimap?
我寫了一個小的LINQ像DSL上的Google Collections public class IterableQuery {
public static <T> Where<T> from(Iterable<T> originalCollection) {
return new Where<T>(Iterables.transform(originalCollectio