1. The document discusses various techniques for limiting concurrency in Node.js applications to avoid resource starvation, including using a counter variable, asynchronous queue, counting semaphore, or external load balancer with monitoring.
2. Examples are given of using an asynchronous queue and counting semaphore to limit concurrency, with references provided to open source implementations.
3. The V8 serialization API is described as a way to serialize JavaScript objects to pass between contexts, with examples of serializing and deserializing an array.