
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
node-mysql connection pooling
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
node-mysql connection pooling
I am using node-mysql module (https://github.com/felixge/node-mysql) OR (http://utahjs.com/2010/0... I am using node-mysql module (https://github.com/felixge/node-mysql) OR (http://utahjs.com/2010/09/22/nodejs-and-mysql-introduction/) . Is this API handling connection pooling as well? I mean with every user request I am calling Client.connect() to query the MySQL and to release the connection: Client.end(). Is this the right way, or should I connect/disconnect only once in a code. I am learning f