Spring Data Couchbase - Search without having admin rights on the cluster -


i'm working on poc couchbase, using spring data put & documents on/off bucket on cluster.

as i'm working in big company, i'm lucky gave me bucket, still don't have admin rights on cluster, have access bucket.

but i'm digging spring data documentation, i'm not able find way retrieve documents without creating views on server. (i'm getting errors "unknown query param" ). nevertheless couchbase java sdk i'm able to, through n1ql queries, use of spring data layer mandatory.

the answers found point me server-side function direction ex : https://stackoverflow.com/a/30928169/3744307

what find, way add repository method list findreceiptbyaccount(string account) without having specificly declare function server-side.

is possible, or have send request administrators create functions me everytime have add findbyx method?

thanks time,

with spring data couchbase 2.x use n1ql index in background, , work single primary index (although having 1 index per repository entity class best performance). maybe can ask admin create index once?


Comments