Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
是的,您可以使用批量突变将一组更新组合在一起。例如,在 Hector 中,您可以执行以下操作:
mutator.addInsertion("jsmith", "Standard1", HFactory.createStringColumn("first", "John")) .addInsertion("jsmith", "Standard1", HFactory.createStringColumn("last", "Smith")) .addInsertion("jsmith", "Standard1", HFactory.createStringColumn("middle", "Q")); mutator.execute();
请参阅 https://github.com/ rantav/hector/wiki/User-Guide 下的“使用 Mutator 插入多列”。
Yes, you can use batch mutations to group together a set of updates. For example, in Hector, you can do something like:
See https://github.com/rantav/hector/wiki/User-Guide under "Inserting Multiple Columns with Mutator".
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
是的,您可以使用批量突变将一组更新组合在一起。例如,在 Hector 中,您可以执行以下操作:
请参阅 https://github.com/ rantav/hector/wiki/User-Guide 下的“使用 Mutator 插入多列”。
Yes, you can use batch mutations to group together a set of updates. For example, in Hector, you can do something like:
See https://github.com/rantav/hector/wiki/User-Guide under "Inserting Multiple Columns with Mutator".