What is database pooling?

后端 未结 6 1233
慢半拍i
慢半拍i 2020-12-02 03:40

I just wanted to know the concept of database connection pooling and how it is achieved.

6条回答
  •  渐次进展
    2020-12-02 04:27

    Database connection pooling is simply caching connections to databases so that they can be reused next time to reduce the cost of establishing a new connection each time we want to connect to a database.

提交回复
热议问题