Hi,
I use hibernate 3.1. My configuration of connection pool is following:
Code:
hibernate.connection.pool_size 1
And I use c3p0 as connection provider.
When I start two web clients from two terminal, hibernate's performace is very slow. But after I set the pool_size to be larger than 2, the performace improve a lot.
Does it mean that if I have millions of clients, then I have to the pool_size to be larger than one million to support millions of clients to concurrently acess DB using hibernate?
And what is the maximum pool_size that hibernate support?
Thanks.