On Feb 2, 2014, at 08:52, Rodrive <[email protected]> wrote: > I am stuck with the download process. > For example if i make a link to a file, when i click on the link the download > start. However i cant download the same file in the same time. > If i click again the download will start only when the first download will be > finish. It seems that the url is "locked". > > How can I have the standard behavior : download the same file multiple times > in "parallel"?
If the server that's serving these files is written in node, then please show the code you're using to respond to the request. I'm guessing you're using sync functions when you should be using async functions so as not to block the main event loop. -- -- 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 --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
