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
I am using "dropwizard-couchbase" dependency to integrate couchbase with dropwizard.
When I try to perform GET operation, it internally invokes "read(String id)" method from "GenericAccessorImpl" class where the method makeKey(String id) is being invoked.
Since makeKey() method appends BucketName with id (for instance, "EMPLOYEE:emp001") as "type.getSimpleName().toUpperCase() + ":" + id", GET operation returns nothing.
However I tried to update this string in DEBUG mode by removing bucketName and passing only ID (emp001), it returns the data properly from DB.
Kindly let me know if I am missing anything or anything needs to be changed.
The text was updated successfully, but these errors were encountered:
I am using "dropwizard-couchbase" dependency to integrate couchbase with dropwizard.
When I try to perform GET operation, it internally invokes "read(String id)" method from "GenericAccessorImpl" class where the method makeKey(String id) is being invoked.
Since makeKey() method appends BucketName with id (for instance, "EMPLOYEE:emp001") as "type.getSimpleName().toUpperCase() + ":" + id", GET operation returns nothing.
However I tried to update this string in DEBUG mode by removing bucketName and passing only ID (emp001), it returns the data properly from DB.
Kindly let me know if I am missing anything or anything needs to be changed.
The text was updated successfully, but these errors were encountered: