vote up 2 vote down star

Is there an equivalent to the nice MapMaker for MultiMaps? currently i create the cache like this:

    public static Map<Session,List<Person>> personCache = new MapMaker().weakKeys().makeMap();

the whole point of MultiMap is to avoid the nested List Values. is there any way to construct the multimap with weak keys?

flag

1 Answer

vote up 5 vote down check

Unfortunately not. Yet. Could you file a MultimapMaker feature request in our issues db? http://google-collections.googlecode.com

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.