Tagged Questions
14
votes
2answers
1k views
What are the use-cases for Web Workers?
I am looking for real-world scenarious for using Web Workers API.
7
votes
1answer
201 views
Is there a standard mechanism for detecting if a JavaScript is executing as a WebWorker?
A WebWorker executes with a scope completely separate from the 'window' context of traditional JavaScript. Is there a standard way for a script to determine if it is, itself, being executed as a ...
6
votes
1answer
261 views
Memory leakage in Chrome using Shared Worker?
I have a web page that starts a HTML5 SharedWorker script. Chrome memory usage increases every time this page is reloaded (hitting F5).
The worker script is very simple. Every second (using ...
6
votes
3answers
358 views
What's the difference between Shared Worker and Worker in HTML5?
After reading this blog post: http://www.sitepoint.com/javascript-shared-web-workers-html5/
I don't get it. What's the difference between a Worker and a SharedWorker?
6
votes
1answer
576 views
multi-core programming using JavaScript?
So I have this seriously recursive function that I would like to use with my code. The issue is it doesn't really take advantage of dual core machines because js is single threaded. I have tried using ...
5
votes
1answer
111 views
How to do worker-to-worker communication?
I'm experimenting with web workers, and was wondering how well they would deal with embarassingly parallell problems. I therefore implemented Connaway's Game of Life. (To have a bit more fun than ...
4
votes
2answers
56 views
What happens to an HTML5 web worker thread when the tab is closed while it's running?
I'm wondering what happens when a user closes the tab which spawned the worker thread, while the thread is still working. Does it halt everything? If so, is there a way to run the thread in the ...
4
votes
1answer
361 views
Why was HTML5 Web Workers support removed from the Android browser in versions 2.2 and up?
I'm trying to learn something about JavaScript threading. And from a tutorial I learned about HTML5 API web worker. This API enables JavaScript multi-threading. So I start to figure out how and where ...
4
votes
3answers
196 views
What browsers currently support Web Workers?
I dug around, but couldn't find an authoritative list. Thanks!
4
votes
1answer
125 views
Do web workers terminate when the user navigates to a new page (within the same application)
For example, can i offload a task and allow the user to keep surfing my site whilst the javascript runs?
It seems if I navigate away from the page, the worker terminates.
3
votes
2answers
84 views
Identifying when a JS script is running as a Worker
I have a script which can be run either directly or, when available in the browser, as a Web Worker. I'd like to run a portion of this script only when run as a worker; so my question is, how can a ...
3
votes
2answers
418 views
Accessing localStorage from a webWorker
Can a webWroker access the localStorage?
if not why not? is it problematic from a security stand point?
3
votes
4answers
1k views
HTML Web Worker and Jquery Ajax call
I'm wondering if I can use Jquery inside the web-worker file. Google Chrome gives me this error: "Uncaught ReferenceError: $ is not defined".
Here is the code:
The parent file:
var loader = new ...
3
votes
1answer
182 views
Does it make sense to use Web Workers for a game?
I am working on a game that has AI logic, movement, etc and drawing. Does it make sense to calculate moving and AI logic using Web Workers? But how do I do that -- because the workers need to know so ...
3
votes
1answer
523 views
Are Web Workers themselves allowed to have Web Worker threads?
This would seem to be the case in Firefox 3.5+, there I can instantiate a Web Worker, and inside the worker, spawn another thread. However, the code will not work in Google Chrome, leading me to ...
2
votes
1answer
104 views
Using WebGL from inside a Web Worker: is it possible ? How?
I opened this matrix multiplication benchmarks and my browser (Firefox 7.0.1) froze until the benchmarks finished (I opened the page in an old Asus EeePC 1000H).
I heard that web workers were ...
2
votes
1answer
717 views
'Uncaught Error: DATA_CLONE_ERR: DOM Exception 25' thrown by web worker
So I'm creating a web worker:
var arrayit = function(obj) {
return Array.prototype.slice.call(obj);
};
work = arrayit(images);
console.log(work);
//work = images.push.apply( images, array );
// ...
2
votes
1answer
226 views
web worker console.log
Is it just me, or is console.log() too much to ask for from HTML5 web workers?
I know that manipulating the DOM is blocked because it is potentially dangerous, but is there really any possibility ...
2
votes
5answers
211 views
Multithreading in JavaScript for game development
I am thinking of developing a game in pure JavaScript and html5, without using any third party plugins. The problem I am facing is that I cannot find a way to separate different "modules" of the game ...
1
vote
2answers
89 views
Web worker dealing with imageData working with Firefox but not Chrome
When I run code that deals with imageData being passed to a web worker and then back, then Firefox works great but Chrome gives "Uncaught Error: DATA_CLONE_ERR: DOM Exception 25"
Searching google ...
1
vote
0answers
120 views
Possible memory leaks using Web Workers (Garbage Collector)
I have an app which calls web worker after the button click. The calculations are moved to worker to relieve UI and make it responsive to user actions while calculations are being made.
Everything ...
1
vote
1answer
72 views
Why are web workers not allowed to modify the dom
I know web workers work as a separate thread than the UI thread but i dont understand why they are not allowed to modify the DOM. I mean that you can allow inter thread communication and keep the DOM ...
1
vote
1answer
111 views
How can I HTML5 Web Worker return more than just one string?
At the moment, my Web Worker just returns a message as a string. Is it possible to return an object?
Thank you!
1
vote
2answers
57 views
Webworker is not running
I have the following code:
var stressWorker = new Worker("./test/webworkers/worker.js");
stressWorker.onmessage = function(event){
alert(event.data);
};
stressWorker.onerror = function(event){
...
1
vote
2answers
460 views
HTML 5 Web Worker Example doesn't work in 8.0.552.231
I'm following this example at: http://www.whatwg.org/specs/web-workers/current-work/
page.html
<!DOCTYPE HTML>
<html>
<head>
<title>Worker example: One-core ...
1
vote
1answer
263 views
has a web works “hello world ” demo using html5
this is the demo, and the code is :
main.js:
var worker = new Worker('extra_work.js');
worker.onmessage = function(event) { alert(event.data); };
extra_work.js:
self.onmessage = ...
1
vote
1answer
358 views
Force reload/prevent cache of Web Workers
I've noticed that most browsers (Chrome in particular) seem to cache web worker scripts even after you force the page to reload (SHIFT+F5, etc). The only reliable way I've found to force the cache to ...
1
vote
2answers
129 views
Web Workers and Sparklines
I know that Web Workers don't have access to the DOM, but I was wondering if there was any way they could render a Sparkline graph behind the scenes and pass it back. If not, is there ANY way I could ...
1
vote
2answers
190 views
Race-condition with web workers when setting onmessage handler?
Please consider the following code and the explanation from this Mozilla tutorial "Using web workers":
var myWorker = new Worker('my_worker.js');
myWorker.onmessage = function(event) {
...
1
vote
2answers
193 views
How to prevent HTML5 Web Workers from locking up thus correctly responding to messages from parent
I'm using web workers to do some CPU intensive work but have the requirement that the worker will respond to messages from the parent script while the worker is still processing.
The worker however ...
1
vote
4answers
1k views
Sharing variables between web workers? [global variables?]
Is there any way for me to share a variable between two web workers? (Web workers are basically threads in Javascript)
In languages like c# you have:
public static string message = "";
static void ...
0
votes
1answer
57 views
HTML5 and Web Workers on IOS
I'm working on building IOS applications using jQuery and HTML5. Recently I learned that HTML5 Web Workers provide a great deal of flexibility for Javascript to perform multi-threaded programming, ...
0
votes
1answer
44 views
Why can't I use this in (JavaScript) Worker when defining an object?
Coming from the Java (OOP) world, I am used to classes, inheritance and multi threading. Now for my little walkabout in the JavaScript domain, I try to utilize these paradigms and patterns where ...
0
votes
1answer
53 views
Mobile browser webworker & offline storage support
Does any mobile browser (Android, ios) support Webworker and offline storage?
Is there any restriction when compared to desktop browsers (Size, resource etc)?
0
votes
1answer
45 views
What is wrong with this WebWorker (no errors, but console.log are not reached)
I have the following code, trying to test out WebWorkers. I have an index.html file that looks like this:
<html>
<head></head>
<body>
<script ...
0
votes
1answer
196 views
Web-Worker with GWT
What's the simplest way of getting a Web-Worker thread loaded with a GWT module?
I am not referring to getting support for Web-Worker in GWT (there are libraries for that) but rather how would ...
0
votes
1answer
84 views
Use Web Worker to getImageData from a file
Is it possible to decode the image data from a file in a Web Worker so that I can pass it to the main thread and use putImageData. This is presumably faster than just calling drawImage.
0
votes
1answer
181 views
Document-free canvas for Web Worker
Is there any implementation of canvas without document.createElement('canvas')?
I want to work with canvas in web worker but i can't pass canvas data to it via worker.postMessage(), because canvas is ...
0
votes
1answer
139 views
HTML5 web worker error “Uncaught SyntaxError: Not enough arguments” when using multiple postMessage calls
I have a single web worker which makes about 30 AJAX requests and after each request it sends a message to the UI using postMessage to log the progress.
For example:
postMessage({type: "progress", ...
0
votes
0answers
82 views
In Web Workers API: How to delete/reload a worker?
I'm loading a worker.php file with text/javascript headers. That worker.php file changes the javascript code every once in a while. Do I have to refresh the whole page every time I want to load a new ...