Re: What is the life of a postgres back end process? - Mailing list pgsql-general

From Jeff Davis
Subject Re: What is the life of a postgres back end process?
Date
Msg-id 1329173145.5627.2.camel@sussancws0025
Whole thread Raw
In response to What is the life of a postgres back end process?  (Eliot Gable <egable+pgsql-general@gmail.com>)
Responses Re: What is the life of a postgres back end process?
List pgsql-general
On Mon, 2012-02-13 at 17:30 -0500, Eliot Gable wrote:
> Are postgres back end processes connection specific? In other words,
> can we assume / trust that they will be terminated and cleaned up when
> we close a connection and that they will not live on and be reused by
> other connections?

Yes, one backend per connection. When you close the connection, the
backend process should go away.

Under some circumstances, that might not always happen immediately if
the backend is in the middle of doing some work.

Regards,
    Jeff Davis




pgsql-general by date:

Previous
From: Eliot Gable
Date:
Subject: What is the life of a postgres back end process?
Next
From: Steve Crawford
Date:
Subject: Re: What is the life of a postgres back end process?