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 the loading of images and base64-encoding them before passing them to the main thread.
Now I'd like to do this in parallel. Ideally I'd use a worker to spawn subworkers but this does not have as wide of a support as workers alone. So since modern browsers support from 4-8 (mobile even more) parallel http connections per domain - I was wondering if I could just open 8 workers and use them for loading/crunching/encoding (with a queue function in my main thread delegating files to load). Are there possibly any performance considerations here?
I guess this is an architecture question - how many workers can you open without impacting stability? I guess system developers know more about spawning threads than just poor web developers ;-)
Another question - since my app is performance sensitive and workers are potentially initialising quite a bit of code at start I was thinking that instead of creating/destroying workers dynamically I would just create 6 of them at application start and keep them "open" and running during the entire lifespan of my app. They're not crunching data all the time - just from time to time when XHR requests/encoding is needed - so keeping them open when they're not doing anything should not make much difference right? Or would extra unused threads still impact the main application thread (or browser) somehow?