依赖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)
标签:columnKey,三段,value,rowKey,table,数据结构
From: https://www.cnblogs.com/PythonOrg/p/16881254.html