+1 vote
in NodeJS Essentials by

When are background/worker processes useful? How can you handle worker tasks?

1 Answer

0 votes
by

Worker processes are extremely useful if you'd like to do data processing in the background, like sending out emails or processing images.

There are lots of options for this like RabbitMQ or Kafka.

Related questions

0 votes
asked May 31, 2020 in NodeJS Essentials by Robindeniel
+1 vote
asked May 31, 2020 in NodeJS Essentials by Robindeniel
...