Tagged Questions
1
vote
1answer
69 views
How to use jQuery to Parse XML from within a Web Worker Thread
Skimming? Just read what's bold.
Howdy friends! I'm building a web application that needs to do some serious XML crunching.
I currently have a function that uses jQuery to parse and manipulate ...
1
vote
1answer
172 views
Unresponsive Google Chrome while running HTML5 Web workers
I am using the following code to run webworker to fune prime numbers in a web page in the latest Google Chrome
https://dl.dropbox.com/u/655237/project/prime.html
However after clicking the start ...
2
votes
1answer
294 views
Ajax Limits in Web Worker
My HTML5 application uses web workers to analyze an image's pixel data from a canvas context. Once the worker has analyzed the data, it makes 3 XHR calls back to my server to update my model. When I ...
4
votes
2answers
1k views
Building an high performance node.js application with cluster and node-webworker
I'm not a node.js master, so I'd like to have more points of view about this.
I'm creating an HTTP node.js web server that must handle not only lots of concurrent connections but also long running ...
-1
votes
5answers
132 views
PHP/Browser Performance: Generating thumbnails by the browser
A user uploads a large resolution image to the server. A thumbnail needs to be created for this image. I thought about instead of having a GD intensive operation to create the thumbnail in PHP, can ...