Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of good patterns/libraries for pooling Web Workers?

I want to be able to do something like the following:

  • Set a maximum number of threads.
  • The first time I ask for a Worker it creates a new one.
  • The next time it will return the previous Worker, unless it is still completing operations, in which case it will create a new one and return that.
  • Once we hit the maximum it starts queuing requests for workers up and starting them when a Worker becomes available.
  • This currently assumes the pool would all use the same .js file.

Or is there a better approach to this?

share|improve this question
Will all these workers be running the same .js file? – robertc Dec 19 '11 at 23:52
Good point - in this case yes. I guess you'd need separate pools for different .js files. I'll update the question to mention that. – Andy Hume Dec 20 '11 at 10:46
jQuery Hive: github.com/rwldrn/jquery-hive – Jack B. Jan 24 at 19:07

closed as off topic by Bo Persson, Rory McCrossan, AlphaMale, Krister Andersson, Inder Kumar Rathore Dec 14 '12 at 14:11

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.