multiSet
Java client有两种接口,提供写同一HashKey下的多行数据,这里封装的是:
- public void multiSet(String tableName, byte[] hashKey,
- List<Pair<byte[], byte[]>> values,
- int ttl_seconds) throws PException;
支持数据过期时间设定
- def multiSet[H, S, V](table: String, hashKey: H, values: Seq[(S, V)], ttl: Duration = 0 second)
table:表名,通常为String
类型hashKey:通常为String
类型value:写入值列表,由sortkey、value组成,如Seq(("hashKey1","sortKey1"),("hashKey2","sortKey2"))
ttl:写入值保留时间,默认为0,表示永久保留return:无返回值