Sannis / node-mysql-libmysqlclient

Asynchronous MySQL binding for Node.js
http://sannis.github.com/node-mysql-libmysqlclient
Other
229 stars 47 forks source link

No build in connection pool #169

Closed henriksjostrom closed 11 years ago

henriksjostrom commented 11 years ago

I have been searching and looking at the code, if there is a connection pool I can use somewhere in the client I apologise.

Can I use the client to create a number of simultaneous connections to the database? I tend to send quite a few queries and it would be very nice if there was some way to not have to execute all my queries in parallel (the rest of my code is asynchronous)

Sannis commented 11 years ago

Meanwhile in Node.js world is to keep modules simple and concentrated on one feature. You can use generic-pool for this.