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 的特定列中检索最大值?我将标签名称存储为名称,并将点击次数存储为 Cassandra 中的值。现在我需要找出最受欢迎的标签(基于点击)?请帮我
例子 :
超列:电影列名:“矩阵”值:10(点击次数)
超列:电影列名:“泰坦尼克号”值:0(点击次数)
超列:电影列名:“头像”值:5(点击次数)
现在我需要分别得到矩阵、头像和泰坦尼克号的结果(基于值 desc)
您需要另一个 CF,其中电影名称作为行键,列值作为 cnames——然后列名的排序使“获得具有最大值的那个”变得微不足道。