I have a use case where I want to query couchbaseViews using the Keys() function like this.
ViewQuery.from(documentDesignName, viewName).stale(Stale.FALSE).keys(["riya","astha"])
So if in the data base "Riya" would be present , its not returning me anything.
Hence I want to ignore the case of the String.
Any help is appreciated.
Thanks in advance.!