如何防止 cassandra get 命令以十六进制显示值

发布于 2024-10-07 19:07:56 字数 513 浏览 3 评论 0原文

我刚刚开始使用 Cassandra,我遇到了一个特殊的问题,即每当我检索一个值时都会以十六进制返回(请参见下文)。我用谷歌搜索过这个但没有成功。如果您能提供任何帮助,我将不胜感激。谢谢!

[default@MyKeyspace] set User['hirsch']['email'] = '[email protected]'; 
Value inserted.
[default@MyKeyspace] get User['hirsch']['email'];                        
=> (column=656d61696c, value=7377686972736368406e79632e72722e636f6d, timestamp=1292294713343000)

I'm just beginning with Cassandra and I have the peculiar problem that whenever I retrieve a value is returns in hex (please see below). I've googled for this without success. I'd appreciate any help that may be forthcoming. Thanks!

[default@MyKeyspace] set User['hirsch']['email'] = '[email protected]'; 
Value inserted.
[default@MyKeyspace] get User['hirsch']['email'];                        
=> (column=656d61696c, value=7377686972736368406e79632e72722e636f6d, timestamp=1292294713343000)

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

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

发布评论

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

评论(1

薔薇婲 2024-10-14 19:07:56

告诉 cassandra 您的列值中有哪些类型的数据:

使用 column_metadata=[{column_name: email, valid_class: UTF8Type}] 更新列族 User;

Tell cassandra what kind of data are in your column values:

update column family User with column_metadata=[{column_name: email, validation_class: UTF8Type}];

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