我实际上在java客户端上使用了couchbase,但是当我查询我的视图时,结果是空的。但是当我检查返回的行数时,它会返回数据库中的良好行数:
ViewResult result = bucket.query(ViewQuery.from("logs", "all_logs"));
System.out.println("Number of rows " + result.totalRows() + " ; success " + result.success()); // Number of rows 12 ; success true
for (ViewRow row : result) {
System.out.println("hello"); // never here
System.out.println(row);
}
我尝试做:
List<ViewRow> rows = result.allRows();
System.out.println("count : " + rows.size()); // count : 0
我的观点处于生产模式。
有什么想法吗?
由于