I don’t want to create client to do some work in the DB if the DB can do it
itself on server side much faster.
The situation is that some data are inserted in to many tables and if these
data need to be post processed a notification is generated. Then the worker
needs to wake up and do its stuff
I don’t want to create client to do some work in the DB if the DB can do it
itself on server side much faster.
The situation is that some data are inserted in to many tables and if these
data need to be post processed a notification is generated. Then the worker
needs to wake up and do its stuff
I am trying to create background worker which listens to notifications and do
some work after receiving one.
I got 2 problems:
- Worker is receiving notifications from every channel not only the
registered channel (in my case "foo")
- Notifications are not logged in the server