redis-om-spring icon indicating copy to clipboard operation
redis-om-spring copied to clipboard

Spring Data Redis extensions for better search, documents models, and more

Results 75 redis-om-spring issues
Sort by recently updated
recently updated
newest added

Java Bean ------------------------------------------ ``` @Data @Document public class Person { @Id private String @TextIndexed private String firstName; @TextIndexed private String lastName; @TagIndexed private String email; @Indexed private List phoneList; }...

question

To easily reproduce, modify `com.redis.om.spring.annotations.document.fixtures.Company` to add a Spring `@Version` annotation like so: ``` @Version Long version; ``` then run your existing test ` com.redis.om.spring.annotations.document.BasicRedisDocumentMappingTest:testAuditAnnotations()` and observe the following error:...

We use a Redis fork of Test Containers () to do integration testing, with one base class for each type of persistence/repositories: - https://github.com/redis/redis-om-spring/blob/main/redis-om-spring/src/test/java/com/redis/om/spring/AbstractBaseDocumentTest.java for `@Document` tests - https://github.com/redis/redis-om-spring/blob/main/redis-om-spring/src/test/java/com/redis/om/spring/AbstractBaseEnhancedRedisTest.java for...

``` 1.5.0 2.2.0 2.2.0 ``` Should be replace with Jedis 4.2

maintenance

Redis-om-spring version 0.6.0 As an extension to the example of Search on Redis Hashes(in this repo), I added a long field 'startUTC' that is indexed. None of the findBy methods...

Hello, I have a spring cloud stream project with kafka streams binder dependency - no issues at startup. Next I add redis om spring dependency 0.6.0, add a model object...

bug

Hi, are transactions and @Transactional annotations supported? Thank you for info, Frantisek

question

The current directory structure: ``` redis-om-spring \_ redis-om-spring ==> builds JAR redis-om-spring \_src/test/java ==> currently has all tests and test utility classes \_src/test/resources \_demos \_roms-documents \_roms-hashes \_roms-permits ``` Proposed directory...

enhancement

Querying by org.springframework.data.domain.Example creates a query without any filter. `"FT.SEARCH" "com.example.demo.PersonEntityIdx" "*" "LIMIT" "0" "10000" "DIALECT" "1"` ``` @Data @AllArgsConstructor @Document("person") public class PersonEntity { @Id private String seqId; @Searchable...