cartridge-springdata
cartridge-springdata copied to clipboard
Spring Data Tarantool
Partial search does not work with multipart index. Since null is serialized to box.NULL. repro: ```java Optional findResponse = repository.findById( ClientChannelId.builder() .mdmId(1) .build()); ``` or ```java Optional findResponse = repository.findById(...
> Добрый день. Средствами cartridge-springdata можно как-то сложить данные в бинарном виде? Пробовал менять поле на varbinary, говорит, что не может строку преобразовать в varbinary, хотя в сущности поле определено...
Currently, the driver does not support automatic updating the schema.
Create a test that shows the mapping behavior of the Date data type from java to tarantool. What type of data is the conversion expected to be? (Number by my...
spring-data-tarantool should lazily fetch data from Tarantool cluster to prevent huge results from crud.select or crud.pairs.
The derived queries are described here: https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods.query-creation Currently only the queries of "declared" type are supported (via the @Query annotation and specification of the stored functoin name). Drived queries support...
See the description of reactive repositories for Mongo https://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#mongo.reactive.repositories Since the nature and API of the `cartridge-java` driver is asynchronous, this task should not require much effort.
Currently there is no mapping for simple structures, like array of string, array of numbers, returning from tarantool procedures
There is no functionality for setting custom mappings on springdata level. It would be nice to have such possibility, for example, I want to map some flat structure (e.g tuple,...
Hello! I noticed that when adding a converter to customConverters in catridge-springdata, it works both for reading and writing. The @ReadingConverter/@WritingConverter annotations are marker annotations and currently there is no...