When Couchbase View Updated? and effective way to manage view

I have an overwhelming number of bucket updates than Insert in the document, and I want to create a view of that bucket. Does View update every time an Update occurs in a document?
View does not need to be updated in real time because there are so many updates and only the data from the previous day is needed.
Can you recommend an efficient operation plan at this time?

I created the bucket to record how many times a particular API was called and how many times it failed.
Each time the API is called, select the document ID to Counter +1 and update it.

Here’s a blog that that addresses your views question. Couchbase Views and Better Alternatives [Part 1 of 2] - The Couchbase Blog.

Couchbase counters may be better suited to your use case.

1 Like