You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When querying through (Reactive)CouchbaseTemplate, should query/count methods like all(), one(), count(), etc. automatically set the QueryOptions readonly to true?
In addition to providing some security in that you are not accidentally modifying data, setting this flag to true
also helps the client to more proactively retry and re-dispatch a query since then it can be sure it is idempotent.
As a result, if your query is readonly then it is a good idea to set this flag.
The text was updated successfully, but these errors were encountered:
When querying through (Reactive)CouchbaseTemplate, should query/count methods like
all()
,one()
,count()
, etc. automatically set the QueryOptions readonly to true?The text was updated successfully, but these errors were encountered: