Обсуждение: Backend Server v's Frontend Server ?

Поиск
Список
Период
Сортировка

Backend Server v's Frontend Server ?

От
Peter Moscatt
Дата:
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 ?

От
Bruno Wolff III
Дата:
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.