ltonetwork / mongodb-rest

JSON REST server for MongoDB (using node.js)
MIT License
405 stars 143 forks source link

runs slow #29

Open rpiskule opened 12 years ago

rpiskule commented 12 years ago

In looking at the code, i realized you are opening and closing a database connection each time a request is made.

For extra speed, consider leaving the connection open for all requests, and never closing the connection.

Minstel commented 6 years ago

@jasny I'm not sure if this is relevant.