Aaron Whiteside
Aaron Whiteside
Support a recursive comparison option that treats null collections and empty collections as equal.
#### Summary Currently when comparing two representations of the same entity from different domains/models, where one has null for a collection and the other has an empty collection, there is...
The following is the "on the wire" interaction between our REST client and the Kafka REST Proxy. A summary of the operations performed is: 1. Start the various docker images...
Using the latest 2.27 ``` Stack: [0x00007f1a40bdd000,0x00007f1a40cde000], sp=0x00007f1a40cda1f0, free space=1012k Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code) C [libc.so.6+0x5ad48] _IO_vfscanf+0xc8 C [libc.so.6+0x6ec67] vsscanf+0x67...
In our organization it's rare that we require specific durability per document, typically it's the same across all our documents and even projects. It would be nice if we could...
This should work alongside cas support in PR #1051 Idea for API: ```java MyEntity entity = template.removeById(MyEntity.class) .withCas(12345L) .one("abc123"); ``` It would be good if this support was also extended...
API Idea: ```java final MyEntity entity = template.findById(MyEntity.class) .lock(Duration.ofSeconds(5)) .one("abc123"); ``` `.lock()` should also exist that takes no arguments and uses the default lock duration.
Support selecting and counting in parallel in SimpleCouchbaseRepository#findAll(Pageable pageable)
We use something like this in our custom base repository: ```java final Mono totalCount = getReactiveCouchbaseOperations().findByQuery(getEntityInformation().getJavaType()) .withConsistency(buildQueryScanConsistency()) .matching(new Query().with(pageable)) .count(); final Mono pageContents = getReactiveCouchbaseOperations().findByQuery(getEntityInformation().getJavaType()) .withConsistency(buildQueryScanConsistency()) .matching(new Query().with(pageable)) .all() .collectList();...
Background: We use N1QLExpression in our custom base repository Solution: (from our workaround) ```java public N1QLExpression update(String bucketName) { N1QLExpression bucket = escapedBucket(bucketName); return prefix("UPDATE", bucket.toString()); } public N1QLExpression set(N1QLExpression......
Deprecated withCredentials(), created more specific withAdminCredentials() replacement method, and associated getters. Updated tests. fixes #2795
### Description When running mvn deploy using buildx it is unable to push any resulting images. ### Info * docker-maven-plugin version : 0.40.2 * Maven version (`mvn -v`) : ```...