多值数据结构
有的时候需要一key多值的数据结构,如 Map<K, List<V>>或者Map<K, Set<V>>
guava 库 为 Multimap
并发 Multimap
protected final Multimap<String, Metric> metricMap = Multimaps
.synchronizedListMultimap(ArrayListMultimap.create());
多key数据结构 Map<key100, Map<key200, Object>> gauga:Table
Table<Integer, Integer, String> table = HashBasedTable.create();
table.put(1, 1, "11");
table.get(1,1);