Thread: Backend Server v's Frontend Server ?

Backend Server v's Frontend Server ?

From
Peter Moscatt
Date:
I am new to programming with Postgres.  I am currently reading the
Programmers guide on how to connect to a database.

It mentions 'backend' and 'frontend'.

What's the difference ?

Pete



Re: Backend Server v's Frontend Server ?

From
Bruno Wolff III
Date:
On Tue, Jul 15, 2003 at 10:55:09 +1000, Peter Moscatt <pgmoscatt@optushome.com.au> wrote:
> I am new to programming with Postgres.  I am currently reading the
> Programmers guide on how to connect to a database.
> 
> It mentions 'backend' and 'frontend'.
> 
> What's the difference ?

The fontend is the client running locally. The backend is the process on
the server that your client talks to. There is one backend process for
each client (connection).
The postmaster is the process that clients first connect to that spawns
backend processes.