Re: What is the life of a postgres back end process?

From: Jeff Davis <pgsql(at)j-davis(dot)com>
To: Eliot Gable <egable+pgsql-general(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: What is the life of a postgres back end process?
Date: 2012-02-13 22:45:45
Message-ID: 1329173145.5627.2.camel@sussancws0025
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Steve Crawford 2012-02-13 23:01:24 Re: What is the life of a postgres back end process?
Previous Message Eliot Gable 2012-02-13 22:30:20 What is the life of a postgres back end process?