Reputation: 318
I have a front-end page where the customer can send an order of purchase then this order is pushed into a queue in Redis. After that I have some workers poping this information from the queue and process this front-end information to persist in several Mongo collections.
I already read some articles about Redis and I'm trying understand the best solution for this question, but i really appreciate some opinions about this topic and maybe other solutions.
Upvotes: 0
Views: 174
Reputation: 709
It totally depends on requirement you have. There are few options like
I have used both of them, rather I have used Kue for production purpose.
Also, as you are using Mongodb, you can opt for "Agenda" npm package. I have used this package in one of my project.
You can compare all these three and chose the best one which suits the best for requirement.
Upvotes: 1