prev <<
9 PostgreSQL features I wish I learned earlier
>> next
7: NOTIFY
Postgres provides a simple notification system that can be used to implement job queues
NOTIFY jobs, '{"class":"CalcFib","number":"123"}';
To receive those notification, you have to
LISTEN
: