> Thanks for the reply.
>
> Sorry that I used the connection and request interchangeably.
>
> Let me put the questions as :
>
> If I keep max connection as 2048 and the backlog queue limit as 2048
> then how does this differ say in performance from setting
> max connection as 3072 and backlog queue limit as 1024.
>
> Now if it is better to keep max connections higher than backlog queue
> limit, what is the penalty of keeping the max connections very high.
>
It's better to use persistent connections than connecting over and over. Each connection will allocate a fixed number of buffers etc (but the connection object isn't allocated until it is used).
Trond