
I use Redis Insight to subscribe on all events on redis used by my locally appwrite instance and it don't show message when I update document from API, but it show it when I update it via console.
Isn't redis pubsub used internally to dispatch message around differents worker ? (send to function & webhook when document changed, for example)

PubSub is just used for the realtime server.
Workers communicate over normal keys & lists.

We couldn’t use PubSub for worker communication, because every subscriber will receive a published message. Therefore if you had 2 deleted workers - both would work on the same task 👍🏻
Basically PubSub vs Queues ☺️
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
