Re: LISTEN & NOTIFY data

Поиск
Список
Период
Сортировка
От Burra
Тема Re: LISTEN & NOTIFY data
Дата
Msg-id Pine.GSO.4.40.0112030903510.7178-100000@ucsub.colorado.edu
обсуждение исходный текст
Ответ на Re: LISTEN & NOTIFY data  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: LISTEN & NOTIFY data  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
Is there any way to listen to all NOTIFY signals?

--------------------[-- burra@colorado.edu --]--------------------------

On Mon, 3 Dec 2001, Tom Lane wrote:

> Burra <burra@colorado.edu> writes:
> > Is there any way to send data along with the NOTIFY command... like
> > possibly oid?
>
> Put the data you need into a table, and use NOTIFY as a signal that
> it's time to look into that table.  Anything else can't work because
> of the signal-ish nature of NOTIFY --- in particular, that if the same
> condition is signaled multiple times while you are within a transaction
> block, you'll get just one notification when you come out of the
> transaction.  If you tried to piggyback OIDs on the messages, you'd lose
> all but one.
>
> You may care to study the advice given on the NOTIFY reference page.
>
>             regards, tom lane


В списке pgsql-novice по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: LISTEN & NOTIFY data
Следующее
От: Tom Lane
Дата:
Сообщение: Re: LISTEN & NOTIFY data