Adding Socket.io to multi-threaded Node.js
One of the disadvantages of Node is that it is single-threaded. Of course, there is a way around it - namely a module called cluster which enables us to spread our application over multiple threads.
A collection of 1 post
One of the disadvantages of Node is that it is single-threaded. Of course, there is a way around it - namely a module called cluster which enables us to spread our application over multiple threads.