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 中检索一行。但是,当我使用 SliceQuery 时,出现了一个异常:原因:me.prettyprint.hector.api.exceptions.HectorException:既没有设置列名也没有设置范围,这是一个无效的切片谓词。
有谁知道我是否使用了错误的查询实现?
这将为您提供一整行:
SliceQuery query = HFactory.createSliceQuery(_keyspace, _stringSerializer, _stringSerializer, _stringSerializer); query.setColumnFamily(columnFamily) .setKey(key) .setRange("", "", false, Integer.MAX_VALUE);