Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Cassandra 中重现 Murmur3 散列。有谁知道如何获取行键中使用的实际哈希值?我只需要我的数据中的一些键值对来检查我的散列实现是否正确。
亚历克斯
问卡桑德拉!在表中插入一些数据。之后,您可以在选择查询中使用令牌函数来获取使用的令牌值。例如:
select token(id), id from myTable;
复合分区键被序列化为 n 次字节数组(始终以表示其长度的 short 开头),其中包含键元素的序列化值和结束 0。我不清楚这些结束零的用途。与SuperColumns有关...