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?
- On a 4 cores processor, is using 20 web workers at the same time faster than using just 4?
- What is the perfect scenario where web workers could use 100% of machine's capabilities?
- Does web worker works the same in all browser?
- Is what I'm asking trivial and I should just hack some more to see?