We are using sails framework for our web application and MongoDB as database.
Now we are calling services of the web app from the mobile.
There can be around 200-300 concurrent users calling webservice.
I observed that there are around 5-6 services executed and rest are ignore with time out exception.
I read somewhere that sails-mongo has default connection pool size 5.
How can I change it?
Here is config file. Though the connection pool size not changing. mongodb: { adapter: 'sails-mongo', url : 'mongodb://127.0.0.1:27017/mydb?poolSize=200' },