skip to Main Content

Reactively write to redis in `REDISJSON` format

I am using ReactiveRedisOperations with the driver of lettuce to write to Redis. @Autowired ReactiveRedisOperations<String, Foo> redisOperation; public Mono<Boolean> save(Foo foo) { redisOperation.map(operation -> operation .opsForValue() .set(foo.getId(), foo); return Mono.just(true); } The serialization is defined as private <T> ReactiveRedisOperations<String, T>…

VIEW QUESTION
Back To Top
Search