Pool Tuning
nomadeous opened this issue · 2 comments
Hi,
I would like to know how to parameterize the number of connections ?
Or if I well understood, the number will increase each time a connection is needed, but none available ?
Anyway, is it possible to prestart a number of connections ?
Thx.
Every name is one connection. Request serialization happens on the calling process so all the connection does is add some data and send it over tcp. Calls are parallel as well (it does not wait for a response before sending next query). There is no performance to be gained by using more connections. If you wish to have more than one, use more than one name and create them.
Sergej
On Apr 21, 2011, at 6:46 PM, nomadeous wrote:
Hi,
I would like to know how to parameterize the number of connections ?
Or if I well understood, the number will increase each time a connection is needed, but none available ?
Anyway, is it possible to prestart a number of connections ?
Thx.Reply to this email directly or view it on GitHub:
#27
Ok.
Thanks