spring-data-couchbase
spring-data-couchbase copied to clipboard
Provides support to increase developer productivity in Java when using Couchbase. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data acce...
Make AbstractCouchbaseConfiguration.authenticator an @Bean so that CouchbaseAutoConfiguration.couchbaseAuthenticator() does not get used instead. Also make consuming authenticator() in AbstractCouchbaseConfiguration a parameter so it gets the @Bean. https://github.com/spring-projects/spring-boot/blob/03787364be2ae4ed8d1d10526ea8f6b32cd9765a/module/spring-boot-couchbase/src/main/java/org/springframework/boot/couchbase/autoconfigure/CouchbaseAutoConfiguration.java#L114
compare performance of decode with new String(input, StandardCharsets.UTF_8) vs result.contentAs(String.class)
Details: https://github.com/FasterXML/jackson/wiki/Jackson-Release-3.0 Examples from other Spring Data modules can be found in https://github.com/spring-projects/spring-data-commons/issues/3292.
See #2022