Cassandra 和 Hector = MultiGetSliceQuery,具有各种不同类型的列值?

发布于 2024-11-13 07:05:47 字数 451 浏览 3 评论 0原文

你好,

我不明白,如何用 hector 查询 cassandra,但返回的列值不是一种单一类型,而是多种类型:

我输入了 ????我不知道该怎么做:

MultigetSliceQuery<String, String, ??????> multigetSliceQuery = HFactory.createMultigetSliceQuery(keyspace, stringSerializer, stringSerializer, ???????);

例如,如果我所有的列值都是 String 类型,我会放入 String.但我在一行中有不同的类型,例如 String、Integer 和 byte[]。所以我必须传入多个序列化程序。

怎么解决这个问题呢?

谢谢。

(可以创建 hector 作为标签吗?我不允许这样做)

Hallo,

I do not understand, how to query cassandra with hector, but the column-values returned are not of one single type, but of many:

I put in ???? where I do not know what to do:

MultigetSliceQuery<String, String, ??????> multigetSliceQuery = HFactory.createMultigetSliceQuery(keyspace, stringSerializer, stringSerializer, ???????);

For for example, if all my column-values are of String type, I would put in String. But I have differnt ones like String, Integer, and byte[] in one single row. So I must pass in more then one Serializer.

How to solve this?

Thank you.

(can one pls create hector as tag? I am not allowed to do this)

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

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

发布评论

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

评论(2

笑忘罢 2024-11-20 07:05:47

您可以使用 ByteBufferSerializer,然后将从 ByteBufferSerializer 返回的 ByteBuffer 转换为 StringSerializer 和 IntegerSerializer 的参数,以转换字符串和整数列。

You can use the ByteBufferSerializer, and then convert the ByteBuffers returned from ByteBufferSerializer as the argument to StringSerializer and IntegerSerializer to convert the columns which are Strings and Integers.

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