我有一个列族,列名是时间戳。我需要使用升序检索一定数量的列。我怎样才能做到这一点?
我实际上使用的是PHP和Cassandra php客户端库。
答案 0 :(得分:1)
找到解决方案,使用
$data = $this->cassandra->cf("UserNotifications")->get(Cassandra::escape($username), null, null, null, true);
而不是
$data = $this->cassandra->get(...);
第一种方式在较低级别运行,由于第五个参数,我可以反转返回数据的顺序。