Pergunta

If I send notifications before starting to listen i.e.

notify test, 'test message';
listen test;

I loose that notifications. How can I persist them for later fetching? Actually, I need this notifications for tables updates, so it is preferably not to start spezialized messaging system like RMQ etc.

Foi útil?

Solução

You can't replay them. If no one is listening, they're gone. Start up your own communication daemon to catch them. Then you can do whatever you want.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a dba.stackexchange
scroll top