table数据结构
依赖guava中的table数据结构
使用
Table<Long, String, Set<Metric>> table = Tables.synchronizedTable(HashBasedTable.create());
# table的三段结构rowKey,columnKey,value
## 三段结构定义
columnKey | |
---|---|
rowKey | value |
相关操作api
table.get(rowKey,columnKey)
table.put(rowKey,columnKey,value)
原创:做时间的朋友