卡桑德拉更新专栏
我如何更新 cassandra 数据库中的列?
columnfam{
username{
name:edds,
surname:surname,
email:[email protected]
}
}
例如我需要更新姓氏?
我使用 PHP 客户端 PHPCASSA。
谢谢
how can i update column in cassandra database??
columnfam{
username{
name:edds,
surname:surname,
email:[email protected]
}
}
for example i need update surname??
im using php client PHPCASSA.
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Octopus-Paul 所说,更新与插入相同。不过,在写作之前没有必要先阅读。你可以这样做:
As Octopus-Paul says, updates are the same as inserts. There's no need to read before writing, though. You can just do this:
看看这里 cassandra-internals-writing
(参见评论 14 和 15)。我猜想,如果您从数据库中检索数据,在 PHP 中修改数据并重新插入该数据,它将得到更新(如果您的数据有 UUID,它将被更新 - 这只是一个假设 - 但请尝试一下)
Have a look here cassandra-internals-writing
(Look at comments 14 and 15). I guess that if you retrieve data from your database, modify your data in PHP and reinsert that that back it will get updated (if your data has an UUID it will be updated - This is just an assumption -but give it a try)