cassandra 更新所有相关(超级)列族的最佳实践

发布于 2024-12-11 09:42:08 字数 1431 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人如玉 2024-12-18 09:42:08

是的,您可以使用批量突变将一组更新组合在一起。例如,在 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:

mutator.addInsertion("jsmith", "Standard1",
    HFactory.createStringColumn("first", "John"))
    .addInsertion("jsmith", "Standard1", HFactory.createStringColumn("last", "Smith"))
    .addInsertion("jsmith", "Standard1", HFactory.createStringColumn("middle", "Q"));
mutator.execute();

See https://github.com/rantav/hector/wiki/User-Guide under "Inserting Multiple Columns with Mutator".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文