I want my Couchbase bucket to do indexing only after x (lets say 2) PUTs. So I set in viewUpdateDaemon the parameters to be as follows:
{
"updateInterval": 5000,
"updateMinChanges": 2,
"replicaUpdateMinChanges": 0
}
and in my code when I'm querying the view I run:
result = bucket.query(ViewQuery.from(viewDesignServices, viewService_emails).keys(emailArray).stale(Stale.FALSE));
However now when I'm querying my view via the web UI it doesn't return the newly added docs at all.
Any help will be good, Michael