On May 18, 2013, at 11:41, Alex Kocharin wrote: > But if we're looking for points and baloons in the same place (say, the same > filesystem or database), they will be looked for in serial anyway, n'est-ce > pas?
I don't know that. I don't know how database servers work internally. They might be multithreaded, and/or on a server with multiple CPU cores. The hard drives might be SSDs or a RAID. So they might be very able to handle multiple read requests in parallel. The normal node way seems to be to start things in parallel, up to a point. I assume the database drivers will queue requests, if you ask for too many of them to be started at one time. -- -- 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.
