I am new at PostgreSQL LISTEN/NOTIFY features. After the LISTEN command,
LISTEN mychannel;
We can NOTIFY messages to the channel.
NOTIFY mychannel 'Hello';
This
NOTIFYmessages is saved somewhere in database. Where? Can I see messages using select query from a table?If I
NOTIFY3 or 5 messages, these are saved on queue. I run theLISTENcommand using a programming language, all messages handled and messages removed from queue. If my client crashed, all messages will be lost. How can I solve this problem?