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

I have an application that uses redis as cache in my springboot application where it uses cache annotations(@Cacheable,@CacheEvict,@CachePut) to leverage redis .I don't see a way to leverage redis-om-spring to...

enhancement

I'm trying to use `redis-om-spring` with Spring Boot 2.7.2 and OpenJDK 18. Whenever I add the `@EnableRedisDocumentRepositories` annotation to my application class, I get the following exception on build: `java.lang.IllegalArgumentException:...

bug

First, my apologies for the massive PR. This started as an effort to up the test coverage to 75% or higher. Along the way, I found a few issues (see...

enhancement

See RedisearchQuery#executeAggregation

enhancement

Repository implementation: ```java Page search(String searchCriteria, Pageable pageable); ``` When you pass sorting criteria via the PageRequest: ```java PageRequest pageRequest = PageRequest.of(page, size) .withSort(Sort.by(Direction.DESC, sortByField)); repository.search("*", pageRequest); ``` this translates...

bug

Hi Team, I was exploring the library and looking into it , seems that aggregation functions are minimal supported . What is the otherway which you suggest for implementing aggregation...

using 0.5.2-SNAPSHOT @TagIndexed @SerializedName(value = "genre", alternate = "Genre") private List genre; Page findByGenre(@Param("genre") Set genre, Pageable pageable); => works with "Sci-Fi" as Redis OM is escaping automatically the hyphen...

- Spring configuration for Index Creation and output of Indices text for DevOps purposes - Maven and Gradle tasks to output the current list of indices and Redis Search command

enhancement