About the number of connections to the database
Asked by juanncThere is a standard three-star: thin clients - application server - DB. 50 customers. Is it true that, for an acceptable response time, there will be, say, 5 connections between the server and the database?
Answers
sadye chester
If the server opens a new connection for each request, then I am afraid there will be problems. If the server uses connection pooling keeps 5 connections, and scatters requests on them - that is enough.
Replies:
Yes, it implies the use of a pool. - wendy byrne
tshope
it all depends on the database and the client’s work with the server
nivedhitha
If you do everything according to your mind - it's true - we have 30,000 unique users per day on five connections to the database. And do not complain.
Is it possible to buy PS3 Slim US ::
Is it possible to transfer the status bar in chrome to the address bar? ::
Can I charge my iPhone by charging from iPad? (1A vs. 2.1A)? ::
What is the meaning of closed blogs on Habré? ::
How to hide the statusbar in the vlc player?
Leave Repply for About the number of connections to the database
Connection pooling is relevant * only * when the time to establish a new connection * really * needs to be reduced.