I am having a simple databucket with 5 documents, and adding the data through web application using CSharp driver. ex: {'key':'Version', 'value': '1.0'}
When I request back the whole list from UI or the Couchbase console, i do not get all the results on the 1st time, i always get the results on 2nd time request after adding new document. Is this the default behavior of couchbase views? I understand it uses memcache in the background.
If it is default behavior then how do I handle this scenario? Because every application needs real time data, or am I doing something wrong here?
I just noticed that the issue is with Production views, above mentioned issue happens only with Production views not in development view, is prod views are different than dev the way it works?