在 Apache Gora 0.5 中检索所有 table 记录的最佳方法

Best way to retrieve all the table records in Apache Gora 0.5

我知道

 query.setStartKey(startKey);
 query.setEndKey(endKey);

有没有类似的

 SELECT * FROM TABLE;

在 Apache Gora 中创建查询时,这会 return 我所有的结果集。

编辑* 我没有设置任何东西就执行了程序。但是,结果集仍然是空的。

 Query<String, Obj> query = store.newQuery();
 Result<String, Obj> result= query.execute();

如果您不设置开始键或结束键,它将检索所有 table,就像您所说的 select - 至少在 HBase 中是这样。