백지부터 시작하는 이세계 코딩 생활

mysql connection pool 원리 및 필요성 본문

Service || Server

mysql connection pool 원리 및 필요성

조아덕 2021. 7. 12. 13:57
# mysql connection pool

 

일반적으로 'Connection'이라 함은 DB에 접속 -> SQL 문을 날리고 -> 결과를 받은 후 -> 연결 종료의 플로우를 따른다. 결과를 받은 후 커넥션을 닫지 않으면 리소스를 불필요하게 낭비하게 됨.

mysql 패키지 공식 문서에도 살펴보면 connect를 하고(접속) -> sql 문을 날리고 -> end를 통해 connection을 종료 순서를 이야기해준다.

커넥션 옵션은 아래에서 확인할 수 있음.

https://github.com/mysqljs/mysql#connection-options

 

자세한 사용방법과 내용은 Ref. 을 참고하면 유용하다.


Ref. 

https://darrengwon.tistory.com/688

 

mysql 패키지) connection pool의 필요성 및 생성

mysql A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed. www.npmjs.com mysqljs/mysql A pure node.js JavaScript Client implementing the MyS..

darrengwon.tistory.com

 

 

'Service || Server' 카테고리의 다른 글

Nodejs : normalizePort  (0) 2021.07.15
Infrastructure as a Service (IaaS)  (0) 2021.07.13
[Node] package.json , npm  (0) 2021.07.09
@types/ [ module-name ]  (0) 2021.06.02
Webhook  (0) 2021.05.31
Comments