Re: Why would I want to use connection pooling middleware?

From: Sam Mason <sam(at)samason(dot)me(dot)uk>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Why would I want to use connection pooling middleware?
Date: 2009-01-15 17:25:28
Message-ID: 20090115172528.GK3008@frubble.xen.chris-lamb.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, Jan 15, 2009 at 11:57:13AM -0500, Guy Rouillier wrote:
> Connections are pooled on the client end, not on the server end. So,
> you'd be able to pool connections on your web server, and should, for
> reasons documented by others. However, since Abby and Barb are using
> different computers, you won't achieve anything by introducing pooling
> into your desktop application.

Connection pooling can function anywhere; you could use it client side
(like the connection pooling built into, say, PHP) where what you say is
true. You can also use something like pgpool on another box (maybe the
database server itself) and point all clients at it.

--
Sam http://samason.me.uk/

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2009-01-15 17:39:53 Re: MD5 password issue
Previous Message Joshua D. Drake 2009-01-15 17:24:41 Re: MD5 password issue