skip to Main Content

Spring-boot Redis JMS JUnit

I am using Redis Server for message broker in my spring boot application. Is there any simple way to Junit my publish and receive API? e.g : Publisher : public String publish(Object domainObj) { template.convertAndSend(topic.getTopic(), domainObj.toString()); return "Event Published"; }…

VIEW QUESTION

Redis Queues – How to resume

Let's suppose we have a list of tasks to be executed and some workers that pop items from that list. If a worker crashes unexpectedly before finishing the execution of the task then that task is lost. What kind of…

VIEW QUESTION

Sidekiq + redis + docker-compose + rails

I configured my project to work with the listed technologies, but when requesting the route http://localhost: 3000/sidekiq, it gives the error Error connecting to Redis on 127.0.0.1:6379 (Errno :: ECONNREFUSED). In the terminal where docker is running, you can see…

VIEW QUESTION
Back To Top
Search