spring-data-couchbase icon indicating copy to clipboard operation
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...

Results 185 spring-data-couchbase issues
Sort by recently updated
recently updated
newest added

**[Martin](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50103)** opened **[DATACOUCH-642](https://jira.spring.io/browse/DATACOUCH-642?redirect=false)** and commented This works in v3 ```java @Query("SELECT META(u).id as _ID, META(u).cas as _CAS, u.* " + "FROM #{#n1ql.bucket} u " + "WHERE u._class='#{@entityName.getUser()}' AND $1 IN...

type: bug

ReactiveFindByQueryOperationSupport - the exists method checks for count > 0. To determine if (any such) documents exist, it is only necessary to find the first matching document - not all...

type: enhancement

I noticed this while working with the integration tests. `@SpringBootTest` + `@Testcontainers`. Some builds on CI were failing with timeout exception when trying to do `repository.save()` and CB error was...

type: enhancement

**[Marcelo Grossi](https://jira.spring.io/secure/ViewProfile.jspa?name=magrossi)** opened **[DATACOUCH-399](https://jira.spring.io/browse/DATACOUCH-399?redirect=false)** and commented IndexManager is not respecting the configured TypeMapper in MappingCouchbaseConverter when creating secondary indices and views. It simply uses the classes fully qualified name (as...

type: enhancement

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.

type: enhancement

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();...

status: waiting-for-triage

feature request - throttling on saveAll() and other operations that currently use flatMap() CBSE-9843

type: enhancement