我实际上将couchbase与java客户端一起使用,但是当我查询我的视图时,结果是空的。但是当我检查返回的行数时,它会返回数据库中的行数:
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
我的视图处于生产模式。
任何想法 ?
谢谢