Tagged Questions
3
votes
1answer
693 views
mysql, one connection vs multiple
On nodejs with node-mysql, should I create one connection for the service like this:
var client = mysql.createClient({
user: 'user',
password: 'pass'
}); // Create a new mysql Client
...