create column family Records with
comparator = UTF8Type and
column_metadata =
[
{column_name: name, validation_class: UTF8Type},
{column_name: label, validation_class: UTF8Type},
{column_name: releasedate, validation_class: LongType},
我想通过 Row-Key 查询记录,然后进一步检查发布日期(时间戳值)。据我了解:http://www.datastax.com/dev/blog/whats-new-cassandra-07-secondary-indexes,这应该很容易,因为我首先通过行键查询然后缩小范围发布日期。
但是如何在赫克托耳中做到这一点?
使用SliceQuery
不起作用。我知道有,IndexedSliceQuery
但我没有二级索引集(如上图所示)。使用 IndexedSliceQuery 是否正确且必须使用(即使我没有辅助索引)?
谢谢马库斯