1

如何在 C++ 中使用一个 insert() 为一行插入多个列?我正在使用节俭生成的 cpp 代码。

我注意到 Java 实现似乎有一个 batch_insert(),它在 cpp 生成的代码中不存在。这是否意味着我必须为每一列调用 insert() 还是有更好的方法?

4

1 回答 1

1

Thrift 接口有一个batch_mutate()调用,允许您传入一个突变映射——一个突变是任何插入或删除。

来自 Thrift 规范:

/**
Mutate many columns or super columns for many row keys. See also: Mutation.
mutation_map maps key to column family to a list of Mutation objects to take place at that scope.
  **/
void batch_mutate(1:required map<binary, map<string, list<Mutation>>> mutation_map,
                  2:required ConsistencyLevel consistency_level=ConsistencyLevel.ONE)
     throws (1:InvalidRequestException ire, 2:UnavailableException ue, 3:TimedOutException te)
于 2012-08-29T12:59:37.077 回答