I am using spring-data-redis in java spring boot microservice and I've got a bulk fetch operation for Entity e, for which I want to return results to the client asap and put the results in redis using non blocking queue which can be drained to remote redis instance asynchronously whenever possible. Now I can implement all of this manually using redisTemplate and @Scheduled job, but wanted to check with the wider community if there's any existing framework which does this ?
I am using lettuce for client side framework but open to using others.
↧
Local queuing framework for redis bulk write
↧