On Oct 25, 2012, at 05:34, Alessandro Arnodo wrote: > I need to create a feature that download about 100 images from 100 different > url, put the imahes into a zip file, and notify user with an email when the > job is done. > As nodejs single threaded, how can i achieve this without blocking server and > user navigation? > Maybe i need to manage this with a queue manager?
If this is going to be something you do often, that might not be a bad idea. Look into Kue; I tried it recently and it was very easy to set up. http://learnboost.github.com/kue/ -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
