What does the cluster module do?
- A Creates a database cluster
- B Forks multiple worker processes that share the same server port
- C Groups related modules together
- D Clusters log output
Answer
Forks multiple worker processes that share the same server port
Cluster lets a Node application use multiple CPU cores. Workers share nothing, so sessions and caches must move to Redis or a database.





