Default Observe poll latency has been changed to 100ms.
Issues: JCBC-109
The options with Views as documented in http://www.couchbase.com/docs/couchbase-manual-2.0/couchbase-views-writing-querying-errorcontrol.html is available. The options STOP and CONTINUE can be set as below.
query.setOnError(OnError.CONTINUE);Issues: JCBC-25
Netty has been upgraded to 3.5.5.
Issues: JCBC-106
Operation Status message has been changed from hard coded value to be based on tunable parameters.
Issues: JCBC-107
The Paginator object has been changed to handle this. The following code listing illustrates how to use the Paginator object and iterate through the pages and between the rows.
Paginator result = client.paginatedQuery(view, query, 15); while (result.hasNext()) { ViewResponse response = result.next(); for (ViewRow row: response) { System.out.println("Next Row: " + row.getId()); } System.out.println("<=== Page ====>"); }
Issues: JCBC-40