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.
4
votes
1answer
176 views
Do Web Workers Increase (or Decrease) Security?
Do web workers alleviate or intensify any of JavaScript's and the Browser Environment's known security issues?
4
votes
1answer
222 views
Synchronously Wait for Message in Web-Worker
Is there some way to synchronously wait for or check for a new message in a web-worker?
I have a large complicated body of code (compiled LLVM from emscripten) that I cannot refactor around ...
4
votes
1answer
921 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 ...
3
votes
1answer
241 views
Memory leak when transferring image data to Web Worker in Chrome
I'm repeatedly passing image data from an HTML5 canvas to a Web Worker using a Transferrable Object --
Condensed Code:
var worker = new Worker("test.js");
setInterval(function () {
var data = ...
2
votes
1answer
94 views
GWT web workers unflattenKeylistIntoAnswers not defined
I have a problem running my web workers in GWT in case i build them for more than one agent.
I receive an error that unflattenKeylistIntoAnswers function is not defined.
And indeed, the function is ...
2
votes
1answer
389 views
Ways to implement CPU bound tasks in nodejs
I am using nodejs for a web server which decodes the GET params and returns data in some encoded format. The decode/encode are done using the crypto module of nodejs, which seems to be synchronous. ...
2
votes
1answer
326 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 ...
2
votes
1answer
258 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
646 views
How to make multiple parallel web html requests in a Chrome Extension?
I'd like to retrieve and parse multiple html pages within a Chrome extension.
Using Web Workers for each request seemed like a simple way to make them execute in parallel. Is that possible? My ...
1
vote
1answer
76 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
47 views
Web Workers - How to achieve exception Handling for importScripts()
I'm using importScripts() in my dedicated Worker to get data from Facebook API using Graph. Occasionally the request appears to time out and Chrome Dev Tools just show a red GET and print the URL that ...
1
vote
1answer
223 views
web-workers in Rails projects
I try to use web workers to be able to run several javascript codes at the same time. To start the worker I put the following into my javascript code section:
var worker = new Worker("my_task.js");
...
4
votes
0answers
41 views
Are web workers preemptive or not?
I guess web workers are not preemptive. Otherwise I do not understand how they can be terminated with terminate API. Is it correct ?
3
votes
0answers
264 views
alternative for web worker in android-phonegap?
can any one suggest me an alternative for phone gap web workers because i want my application to run successfully from android 2.2 to 4.2.
As i know web workers support for 4.0 and above.
I tried ...
3
votes
0answers
522 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 ...
2
votes
0answers
56 views
How can I profile threaded javascript?
I've been using Firebug to profile a javascript elastic particle simulation. My most recent change was to move the simulation code to a worker thread separating it from rendering code.
However, ...
2
votes
0answers
51 views
using the facebook javascript sdk with a web worker
I have a Facebook application that needs to query a lot of data from the Graph API. I can currently pull all of the data using the Facebook javascript-sdk, however the user has to wait for facebook to ...
2
votes
0answers
106 views
How can I access document.cookie from inside a Web Worker?
Since Web Workers can't access the document object, how can I access cookies in a worker script?
Background
I am working with Django and I need to pass the CSRF token in an AJAX post. The standard ...
2
votes
0answers
358 views
Javascript Web Workers File Upload
I am trying to make a html uploader for very large files using HTML5 and Web Workers. Atm it uploads slowly but consumes alot of memory. I think it is transferring the whole file to the memory when it ...
2
votes
0answers
241 views
RequireJS module with web worker in library
As with most use cases of web workers, I've got a piece of code that can potentially take a while to run - it builds up an Excel worksheet based on a bunch of data. But, as workbooks can have multiple ...
1
vote
0answers
10 views
Chromium: is communicating with the page faster than communicating with a worker?
Suppose I've got the following parts in my system: Storage (S) and a number of Clients (C). The clients are separate Web Workers and I'm actually trying to emulate something like shared memory for ...
1
vote
0answers
33 views
Web SQL Web Worker Synchronous
First of all, sorry for my English...
Maybe it's a nonsense but i have the following question:
I have a jquery event call...
$('#buttonX').click(function(){
function1();
alert(function2());
...
1
vote
0answers
81 views
HTML5 Web Workers - How to share work between threads
I'm pretty new when it comes to JS but I've had a stab at some basic multi-threading after researching the Web Workers API. My attempt below is to abstract the logic for determining the next work unit ...
1
vote
0answers
205 views
WinJS web worker call vs call to WinRT C# component returning a promise
I'm working on a WinJS game in which part of the logic is implemented in a C# WinRT component because it proved to be both more efficient and easier to conceptualize and debug. That component is ...
1
vote
0answers
61 views
Creating multiple instances of the same file dynamically in JS (workers)
So I'm basically doing this (simplified) ...
var script = '...some JS code...',
blob = blob = new Blob([script]),
worker = [];
for (var i=0; i<10; i++) {
worker[i] = new ...
1
vote
0answers
72 views
Web Worker - importScripts “on finished” callback
I use importScripts() to load huge JSON file (several dozens of MB) into webworker.
Is it possible to send callback when the import has been completed?
ex. self.postMessage("finished")
1
vote
0answers
34 views
JS: Transfer DataTransferItemList to WebWorker
i want to use the synchroneous JS FileSystem API, therefore, this code has to be put to a webworker. the incoming data for the webworker are taken from a dragndrop event (dataTransfer.items) in order ...
1
vote
0answers
248 views
Reasons to move the WebSockets into a Worker Thread
I am running some tests with WebSockets.
For the test I used the Alchemy-Websockets .NET based server.
The web application open several windows and it used to monitor different services and ...
1
vote
0answers
302 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
0answers
212 views
Examples of production-heavy usage of javascript web-workers
A year ago I've already asked a question about webworkers, but it was closed as not constructive.
OK, let me try another way. The question is - what big (well may be not so big, but real, ...
1
vote
0answers
69 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 ...
0
votes
0answers
28 views
Locale string comparison does not work properly in Firefox extension web worker
The localeCompare() function does not behave the same in a Firefox extension main code and in a web worker (or chrome worker).
For instance, in the main code, I have this code:
var array = ["École", ...
0
votes
0answers
110 views
Using web workers in phonegap
I'm trying to create a HTML5 Web Worker in phonegap, but phonegap doesn't allow me to load a local javascript file at runtime.
I get the following error:
var web_worker=new Worker('socket-worker.js')
...
0
votes
0answers
88 views
Webworker canvas performance terrible
I'm trying to use webworkers to render parts of the frames for an animated mandelbrot zoomer, since there is a lot of calculating involved, and since this can be easily split up in blocks this should ...
0
votes
0answers
63 views
Node.JS web worker memory leak?
I've got a Node.JS application that spawns a number of Web Workers.
I'm seeing what looks like a slow memory leak, but I don't think it's my code. Even if I comment out the code entirely, and I just ...
0
votes
0answers
27 views
utf-8 encoding in webworker
In a web application with <meta charset="utf-8"> I get the ID3 tags of mp3 files like this:
var reader = new FileReader();
reader.onload = function(onloadEvent) {
var mp3Data = new ...
0
votes
0answers
36 views
How can I share state effectively between Web Workers?
I'm looking at porting a game to HTML5, but I'm running into some problems.
The game uses multithreading quite a bit, with rendering running on the main thread and scripts running on worker threads. ...
0
votes
0answers
169 views
“setTimeout Loop” doesn't work correctly in web worker and require.js
I want to use web worker as game loop. I think this idea is good for game architecture but had some problems.
(ChromeDev, "26.0.1410.5 dev")
I write next code to main loop. Client is given ...
0
votes
0answers
30 views
How exactly does web worker use browser/os resources?
Web worker is supposed to be making web app do more processing but how exactly? It all seem like magic to me. So below are specific questions:
Does using web worker matter for single core computers?
...
0
votes
0answers
37 views
web worker use case and relationship between each web worker
I have a question about web worker, can or should each web worker task has relations?
let say i have 4 tasks, task a, b, c, d, while 4 tasks all done, then output to html
and let say task b has some ...
0
votes
0answers
111 views
Asynchronous way of retrieving Spotify user's library/tracks
I'm trying to find a way to retrieve the currently logged in user's tracks - specifically, those which are added to any type of playlist. Since I can't access the user's playlists directly (as ...
0
votes
0answers
26 views
Compatibility JQuery Mobile and JQuery Hive
Is there any compatibility issue between JQuery Mobile and the JQuery Hive plugin (deal with Web Workers)?
I tried to implement those technologies and get errors: TypeError: $(...).delegate is not a ...
0
votes
0answers
56 views
delegating timekeeping to a worker in javascript
I have a quick question for you guys, would I benefit from delegating timekeeping jobs to worker threads in javascript?
I have big single page website that fires events with setInterval. The site ...
0
votes
0answers
100 views
Architecture: keeping multiple Web Workers open at the same time without impacting the stability of my web-app?
So basically I'm working on a (mobile) web-app that loads a ton of image data and caches it in WebSQL/IndexedDB on the client.
I've just started experimenting with Web Workers and use a worker to do ...
0
votes
0answers
37 views
Referencing web resource from another web resource (html5 web worker and asp net)
I have a problem that I can not solve and am in need of an advice.
I am using web workers for html5 file upload and need to pass a javascript file reference to the worker's constructor:
...
0
votes
0answers
40 views
Auto-detect screenY/screenTop change? (trying to avoid interval)
I'm trying to detect if someone has physically moved their browser. However while it's easy to detect if someone has resized or minimized their window, detecting the actual movement is extremely ...
0
votes
0answers
135 views
WebWorker without xmlhttprequest?
So from what I've read, to run a web worker, you:
var ww = new Worker('js/myscript.js');
This runs an xmlhttprequest for script.js, runs the code inside and does the normal callback work. Is there ...
0
votes
0answers
277 views
Parsing HTML DOM in web worker
I am trying to extract content from web pages using my firefox/chrome/safari extension. Capturing works fine but when I capture full web pages, it takes a long time and UI gets blocked. I want to move ...
0
votes
0answers
430 views
timer and button pressing at the same time with JavaScript
In my Web app, the user sees a countdown timer (that each second updates the number of minutes and seconds remaining) and can press "+1" and "-1" buttons to increment a total value. (The use case is ...
0
votes
0answers
149 views
Split javascript works into iframes as fallback for browser that are not implementing yet web workers
Split javascript works into iframes as fallback for browser that are not implementing yet web workers:
I'm interested to know if exists an actively mantained library to do this.
I'm not interested ...
