I want to develop multi core capable JS applications. Even if multi core support is not all around us today it will be soon enough in the good engines to think about it in advance.
What is the best way to go about it and which way is the most soon-to-be-parallelized candidate? Event-based programming - don't call functions but call events on the window object Extensive usage of web worker threads? How to go about DOM manipulation from workers in this case? Is the async XHRequest single or multi-core? In other words: If I have a quad core CPU and start 3 XHRequests at once, will the requests and result callbacks run in parallel threads or serial in the same thread? -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/[email protected]/ To search via a non-Google archive, visit here: http://www.mail-archive.com/[email protected]/ To unsubscribe from this group, send email to [email protected]
