Tagged Questions

Workers provide a simple means for web content to run scripts in background threads. Once created, a worker can send messages to the spawning task by posting messages to an event handler specified by the creator.

learn more… | top users | synonyms

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
269 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
195 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
404 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
1answer
262 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
361 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
578 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
2answers
1k views

Web Workers and Canvas

Are web workers allowed to access a canvas object?
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
1answer
134 views

Guide to using a worker server with a php application

I've built a PHP app, and I've read that it's a best-practice to use a 'worker' + queue server when calling api's or performing operations that are time consuming. A quick search for a tutorial has ...
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
58 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
51 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
285 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
368 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
378 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
199 views

What browsers currently support Web Workers?

I dug around, but couldn't find an authoritative list. Thanks!
4
votes
1answer
126 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
1answer
397 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 ...
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
419 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
3answers
888 views

Will node's web workers detronize erlang? [closed]

I'm curious if Erlang could be killed by Node.js which could be extreme popular, fast and have web workers. Is it possible? Why? But what about multiple-processor concurrency? Aren't threads ...
3
votes
1answer
186 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
98 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
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
722 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
121 views

jQuery custom ajax build

I'm trying to strip everything except for ajax functionality from jQuery. Sorry for the silly question, but hear me out: I'm using web workers to make the ajax call so I can't have the core.js stuff ...
2
votes
1answer
231 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 ...
2
votes
1answer
435 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
90 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
116 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
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
113 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 2