Skip to main content
0 votes
0 answers
63 views

I am using redis-om-spring:1.0.4 with spring boot 3.4.10 for getting @Document support. I have some class like @Setter @Getter class Vehicle { @Id private String id; ...
Stanislav's user avatar
  • 451
0 votes
1 answer
112 views

I’m using Redis OM Spring with Kotlin to store documents in Redis as JSON. Here’s a simplified version of my document: @Document(value = "Marker", indexName = "MarkerIdx") data ...
user avatar
1 vote
2 answers
228 views

I’m using Spring Data Redis OM with Kotlin and want to fetch only specific fields of a document instead of the entire object. I have a Flight document and a repository set up, and I’m trying to use ...
Pawandeep Singh's user avatar
1 vote
0 answers
68 views

I’m using Redis OM Spring with a simple repository: @Document(value = "Marker", indexName = "MarkerIdx") data class RedisMarker( //other indexed @Indexed ...
Pawandeep Singh's user avatar
0 votes
1 answer
69 views

I’m working on a Kotlin project using Redis OM Spring and I have a Redis document class representing train markers: import com.redis.om.spring.annotations.Document import com.redis.om.spring....
Pawandeep Singh's user avatar
1 vote
1 answer
168 views

I'm using Spring Boot with Redis for caching and Redis OM Spring for document operations. My current configuration has both JedisConnectionFactory and LettuceConnectionFactory, but I'm getting startup ...
Pawandeep Singh's user avatar
0 votes
2 answers
108 views

On redis I have around 1.2M json documents, 1st namespace: com.test.api.redis.model.document.PRedis:* around 700K json keys 2nd nemespace: com.test.api.redis.model.document.SRedis:* around 550K json ...
xMilos's user avatar
  • 2,098
0 votes
1 answer
101 views

I have a spring 3.1 and java 21 gradle project and am trying to add this dependency my repositories are defined in gradle as follows: mavenCentral() mavenLocal() maven { url = uri("https://...
user1555190's user avatar
  • 3,413
0 votes
1 answer
150 views

I have a data model created with Redis-OM-Spring as follows: @Data @Document public class RedisOAuth2Authorization implements Serializable { @Indexed @NonNull @Id private String id; ...
Suvin Nimnaka Sukka's user avatar
1 vote
1 answer
2k views

I am using redis-om and Java, I get Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR unknown command 'JSON.SET' Here is the code that I am using: @SpringBootApplication @Configuration ...
xynb's user avatar
  • 83
0 votes
1 answer
340 views

when i do the aggregation for 1 day the result is returned here is an example query FT.AGGREGATE myIndex '@date:[1632776400000 1632862800000]' GROUPBY 1 @name REDUCE COUNT 0 AS count SORTBY 2 @count ...
Alexus's user avatar
  • 31
0 votes
1 answer
609 views

I am facing a strange issue while running this this example https://github.com/redis-developer/redis-om-spring-skeleton-app . I am using Redis-om-spring+springboot3+jdk 17 . Project is building fine ...
Sukh's user avatar
  • 570
0 votes
1 answer
196 views

I am trying to use gradle for this project https://redis.io/docs/stack/get-started/tutorials/stack-spring/. My build.gradle is this one: plugins { id 'java' id 'org.springframework.boot' version '3.0....
Sukh's user avatar
  • 570
0 votes
2 answers
661 views

UPDATE: This is fixed in 0.8.0 I am trying to search for filter by an indexed field and search for free text inside my objects. It seems that it is searching for the company name or the search term. ...
rjdkolb's user avatar
  • 12.1k
0 votes
1 answer
965 views

In redis-om-spring I can search all fields by simply adding a search method to the repository. public interface ProductRepository extends RedisDocumentRepository<Product, String> { Page<...
rjdkolb's user avatar
  • 12.1k

15 30 50 per page