Tagged Questions
34
votes
3answers
4k views
Node.js and CPU intensive requests
I've started tinkering with Node.js HTTP server and really like to write server side Javascript but something is keeping me from starting to use Node.js for my web application.
I understand the whole ...
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.
13
votes
7answers
268 views
Gimme teh codez to make my browser slow down
I'm writing a library for WebWorkers, and I want to test the difference between running a script in the main page thread, versus in one or more workers. The problem is: I can't find out of hand a ...
10
votes
1answer
192 views
Is there a way to set a Web Worker to low priority?
I am thinking of using Web Workers to provide some background functionality while a user is browsing my website (that's what Web Workers are for, right?). However, I don't want to take the risk of ...
9
votes
6answers
1k views
Degrading gracefully with Web Workers
So I'm starting to hear more and more about Web Workers. I think it's absolutely fantastic, but the question I haven't seen anyone really tackle so far is how to support older browsers that do not ...
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 ...
7
votes
2answers
401 views
Web workers without a separate Javascript file?
As far as I can tell, web workers need to be written in a separate Javascript file, and called like this: new Worker('longrunning.js')
I'm using the Closure compiler to combine and minify all my ...
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 ...
6
votes
5answers
985 views
Combining the power of Processing.js and Web Workers
I've been doing some reading about two (relatively) new concepts in the Javascript language - Web Workers and John Resig's awesome Processing.js (well, not really a new 'Javascript concept', but you ...
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 ...
5
votes
2answers
432 views
Get number of CPU cores in JavaScript?
Is there a way to determine the number of available CPU cores in JavaScript, so that you could adjust the number of web workers depending on that?
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
49 views
JavaScript: Using a queue for network communication
I'm working on a project in which a client must be able to communicate with a server via WebSockets. Since the application which we develop as to be highly responsive on user input we have decided to ...
4
votes
2answers
282 views
Passing objects to a web worker
I'm trying to pass an object to a web worker through the postMessage function.
This object is a square that has a couple of functions to draw himself on a canvas and some other things. The web worker ...
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
2answers
377 views
JavaScript: Web Worker and Typed Arrays
I have a web worker (started with new Worker()) that does some processing and is supposed to return a Float32Array.
It seems however that after the worker postMessage()s the data, it goes through ...
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
109 views
Non-DOM subset of jQuery
I'd like to be able to use a number of utility methods from jQuery in a Web Worker, where there is no access to the window or document objects.
Specifically, I'd like to be able to use methods like ...
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
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
355 views
How do I talk to Firebug from a Web Worker?
My web workers are becoming increasingly complicated and I'm sorely missing Firebug access while working with them. This:
console.log("test");
Does not produce anything from a web worker. I've also ...
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
2answers
29 views
javascript pre-loading complex data
I have a simple webpage that serves as an introduction to a more complex set of data.
This complex set of data takes a lot of time to render.
For new users when they arrive at the simple webpage I ...
2
votes
0answers
15 views
Can Web Worker `importScripts` method access scripts cached by the main thread?
Multiple questions actually:
Will importScripts always load the scripts with a GET request or can it cache scripts?
Can importScripts access scripts cached in the main thread or browser context?
Can ...
2
votes
2answers
96 views
Parallel programming / Synchronization using JavaScript Web Workers
Are there any synchronization primitives like Barriers, Semaphors, Locks, Monitors, ... available in JavaScript / Web Workers or is there some library available empowering me to make use of such ...
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
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 ...
2
votes
1answer
433 views
Node.js download and execute external script
I am building a simple http client using Node.js.
I wonder how to execute a JS script downloaded from a Web server (browser mimicking):
my JS code - already tested on FF3.6 - contains both Web ...
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
2answers
79 views
JavaScript: Is this timer reliable?
Today I was introduced to the world of Web Workers in JavaScript. This made me rethink about timers. I used to program timers the ugly way, like this.
var time = -1;
function timerTick()
{
...
1
vote
2answers
173 views
Using Web Workers for drawing using native canvas functions
It's possible to send a CanvasPixelArray obtained via getImageData to a worker script, and let the worker script manipulate the pixels in its background thread, and eventually post the manipulated ...
1
vote
0answers
28 views
Reliably detect if the script is executing in a web worker
I am currently writing a little library in JavaScript to help me delegate to a web-worker some heavy computation .
For some reasons (mainly for the ability to debug in the UI thread and then run the ...
1
vote
0answers
115 views
Heavy Computation in Javascript
I am currently in the process of building a Finance library for Javascript(Browser and Node)
One of the main features of the library is doing simulations with options, therefore there is a lot of ...
1
vote
1answer
68 views
Eval-ing a function
I am trying to create a small library that you can send an object(that has functions) and some data, and args, and it will send the object, data, and args to a worker process who will then eval the ...
1
vote
1answer
99 views
Deserialize big data JSON from a REST request into objects without locking up the browser?
In a rich internet app:
User requests a resource
Server responds with a huge JSON response
Client (running in browser) must process the JSON converting it to the many objects which make up the ...
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
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
1answer
374 views
iPhone browser that supports web workers?
Title says it all. Came to realize that iphone's safari browser does not support javascript web workers (multithreading). Am wondering whether there is another browser for iphone that does support ...
1
vote
0answers
55 views
Conditions for when event-handlers can be called by the browser
when working with asynchronous XHR-requests in Javascript, I often wonder, if there are
conditions, for when the onReadyStateChange-callback can be called by the browser. If there
were none, some ...
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
596 views
Asynchronous POST request from a Firefox's web worker
I am trying to make an asynchronous request with POST method from a web worker used in my extension. The thing is that it does not work for me.
On the server side I have PHP script listening for data ...
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
1answer
250 views
Web workers - How do they work?
I'm trying to understand this example:
HTML (main code):
<html>
<title>Test threads fibonacci</title>
<body>
<div id="result"></div>
...
1
vote
2answers
196 views
window.alert in worker thread
If I put a window.alert on a webworker client, then the background worker stops working.
Why is this so?
i.e.
The caller:
var worker = new Worker("worker.js");
// Watch for messages from the worker
...
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
2answers
35 views
Accessing IndexedDB from multiple javascript threads
Overview:
I am trying to avoid a race condition with accessing an IndexedDB from both a webpage and a web-worker.
Setup:
Webpage that is saving items to the local IndexedDB as the user works with ...
0
votes
0answers
47 views
Web workers not spawning sub workers in firefox 10
I've been trying to use web workers in Firefox 10. The example on the Mozilla site computes Fibonacci numbers (in this case, the 5th Fibonacci number - 5):
...