Skip to main content
Stack Overflow for Teams is now Stack Internal: See how we’re powering the human intelligence layer of enterprise AI. Read more >
Filter by
Sorted by
Tagged with
0 votes
2 answers
477 views

To use ttl for hashkey field, I want to use hexpire, the command applied to the latest redis, but I wonder if there is a reflection plan in spring-data-redis. I used redisson before, but I support ...
윤태성's user avatar
3 votes
2 answers
484 views

I'm experimenting with Coordinated Restore at Checkpoint (CRac) and an Spring Boot application (version 3.2.2) with Spring WebFlux containing a reactive web client (all Netty) using Azul 21.0.2. When ...
Brian Preuß's user avatar
3 votes
0 answers
140 views

Could not read JSON: Cannot construct instance of reactor.core.publisher.MonoCacheTime (no Creators, like default constructor, exist): cannot deserialize from Object value (no delegate- or property-...
Suman Paudel's user avatar
0 votes
1 answer
632 views

Lettuce github: https://github.com/lettuce-io/lettuce-core/issues/1085 1 “Spring Data Redis uses Lettuce’s synchronous and reactive API.” it says Does that mean it works basically synchronously? I ...
firefly_0's user avatar
1 vote
0 answers
173 views

I've seen previous unanswered questions and I still don't know whether it's possible. Spring Data Redis (non-reactive) has executePipelined but is there a reactive equivalent? Specifically, are ...
Haf's user avatar
  • 607
0 votes
2 answers
786 views

I am using ReactiveRedisOperations to save data objects in Redis and this call returns a Mono as per the api. I notice that if I don't do anything with this Mono return than this code does not do ...
Mark1234's user avatar
  • 619
2 votes
1 answer
769 views

Pipeline support is available on RedisTemplate (RedisTemplate.executePipelined) But I couldn't find any equivalent option in ReactiveRedisTemplate to use pipeline or batch operations. Kindly direct me ...
user1433374's user avatar
0 votes
2 answers
3k views

Is possible to create empty stream using spring redis data? Am trying to create rest endpoint to create just stream without data. Thanks,
Aswath Murugan's user avatar
0 votes
1 answer
1k views

I am trying to get all keys, and then fetch all their values using a ReactiveRedisTemplate in Spring Data Redis (I know that scan is preferable, but I want to keep it simple for now, unless that is my ...
Tomer Amir's user avatar
  • 1,615
1 vote
0 answers
735 views

This integration test uses ReactiveRedisTemplate list operations to: push a List to the cache using the ReactiveRedisTemplate list operation leftPushAll() retrieves the List as a flux from the cache ...
user619804's user avatar
  • 2,366
1 vote
1 answer
2k views

I'm writing an app that works with Redis Stream using Spring Data Redis. I'm using spring-data-redis with Lettuce. I can successfully write to the stream as I can validate it directly in Redis via ...
Peter's user avatar
  • 1,612
0 votes
0 answers
437 views

I have redis stream producer and i have question about the order of records that producer sends to redis. Redis clients use TCP to execute commands. https://redis.io/topics/protocol#networking-layer ...
denizg's user avatar
  • 972
0 votes
1 answer
762 views

How do we handle cache miss scenario using ReactiveRedisTemplate<String, String>? Also, need to log and treat any error from underlying Redis cache as cache miss. please suggest.
Rayyan's user avatar
  • 173
0 votes
1 answer
1k views

I'm using Spring Webflux + Reactive Redis, my goal is to use Redis as a file cache. I was trying to set a key with a ~100MB ByteBuffer at first, didn't work. I double-checked with the debugger to make ...
skathi's user avatar
  • 3
2 votes
1 answer
2k views

We are seeing the below error after the spring boot upgrade to 2.2.11.RELEASE. I think the first health check if failing with the below error but when I invoke the health endpoint i see that health ...
Vivekanad Y's user avatar
2 votes
0 answers
1k views

I need to store a list of object in Redis. Every element of the list should be accessed for a unique key. For that I think that the list of object should be stored as a map of object in Redis (I ...
Cesar Miguel's user avatar
2 votes
0 answers
438 views

I want to store my WebSession in Redis. There is no problem at put operation, but it throws exception when retrieving stored record. Here is my example stack trace Caused by: com.fasterxml.jackson....
denizg's user avatar
  • 972
0 votes
1 answer
631 views

I am integrating the spring integration-redis module so as to use the RedisLockRegistry. but I got the following logs on spring boot start up. 19: 2020/09/11 21:02:25,006 2312 [INFO] [main] [...
strangerX's user avatar
7 votes
4 answers
4k views

I am trying to listen on a redis stream and process the message as and when they arrive. I am using async command and I expect the message to be pushed instead of being pulled. So I don't think a ...
falcon's user avatar
  • 1,444
0 votes
1 answer
1k views

I use spring Data Redis Reactive framework and spring Boot version is 2.3.0. Here is my Redis configuration: @Bean("reactiveRedisTemplate") public ReactiveRedisTemplate<String, Object&...
hero-zh's user avatar
  • 75
-1 votes
1 answer
1k views

To build a reliable message queue using redis streams, i am using spring-boot-starter-data-redis-reactive and lettuce dependency to process the messages from redis stream. Though i am able to add, ...
Nagendran's user avatar
  • 297
0 votes
1 answer
2k views

In spring-data-redis-reactive, writing operations returns redis execution result which makes chaining operators really hard. Take the example reddit in Chapter 1 of Redis In Action. I try to re-...
leowang's user avatar
  • 551
6 votes
5 answers
117k views

I am new to Reactive Programming. i need to connect to Redis to save and get some data. The redis instance is present in cloud. Am using Lettuce Connection factory to establish the connection. when ...
Urandoor Shilpa's user avatar
0 votes
1 answer
2k views

I am learning to use spring webflux and as part of it i developed an application which uses Redis to save and retrieve data. But the problem i face is when the request tries to connect to redis i get ...
Urandoor Shilpa's user avatar
1 vote
1 answer
3k views

I've been triyng to use the Jackson2JsonRedisSerializer to serialize a custom instance as the hash value in a Redis store. It seems that even though I have correctly created the template, no hash is ...
codeninja55's user avatar
4 votes
0 answers
1k views

I am using Spring data Redis to consume from a Redis stream ,using the reactive stream receiver to listen over a consumer group works ,but have observed that the Flux stream closes prematurely ...
Gaurav Rawat's user avatar
  • 1,324
1 vote
2 answers
4k views

I'm using ReactiveRedisConnection to configure a connection to a local redis container. But in the future the application will be hosted on a webserver and the redis on a different server. Is there ...
Johnnes Souza's user avatar
2 votes
1 answer
717 views

I need to push some data to the client if it is in Redis, but client keeps reconnecting to the SSE endpoint every 5 seconds. The backend code: @RestController @RequestMapping("/reactive-task") ...
Magzhan Z's user avatar
4 votes
2 answers
5k views

I am trying to get execution time for reading from redis in reactive programming, on looking up docs I am able to see that elapsed() method will does the same and implemented code as below. Flux....
Dil1y_reddy's user avatar