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 serialization and desirialization to JSON and what I end up with when receiving the message is a plain javascript Array (with all of the properties the original typed array had)

A trivial work around would be to just recreate the typed array from the javascript array but that's wasteful and takes up time and memory.

Is there a better way to do this? Some kind of way to tell the JSON deserialization to instantiate a Float32Array instead of a javascript array? or a way to otherwise transfer the binary data?

link|improve this question

57% accept rate
feedback

2 Answers

update: this seems to be a Chrome bug at the moment:

http://code.google.com/p/chromium/issues/detail?id=73313

typed array are preserved in Firefox 4.

link|improve this answer
feedback

I'm pretty sure that you're stuck with the inherent serialization. The browser has to make a copy of the object(s) passed through anyway. Perhaps you could improve on that a little by doing the serialization/deserialization yourself (that is, make a string on one end, pass that through as a simple string, and then run your own code to parse it on the receiving end).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.