In this WWDC video,
https://developer.apple.com/videos/play/wwdc2015/718/?time=1509
they talked about possible thread explosions.
Thread explosions can occur if you send lots of async blocks to a non-serial dispatch queue.
Questions:
- Can thread explosion happen too if you have lots of serial dispatch queues, for example, 100?
- Can thread explosion also happen to 1 non-serial (maxConcurrentOperationCount not 1) NSOperationQueue?
- Can thread explosion also happen if you have lots of seriall (maxConcurrentOperationCount is 1) NSOperationQueues, for example, 100?
- Can thread explosion happen to the global queues? Or are they regulated in some way to avoid thread explosions?