I have two node js servers.
First is using cluster and I have defined one shared mongoClient for each worker. For more description, I create a client at the start time of the application and use it each time I need without closing It.
The second is running not using cluster. But I tried to create client in the same way.
My question is: does the latter client use all cpu cores when first core is overloaded or not? I mean do both of them operate in the same way or not.