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
- Realtime api and labels as permission
in my tables i set labels as permission and real-time capabilities stopped working. Before when i was having "any" role everything was working. Note: user have...
- how to access the value of account statu...
- Redirect from clicking team invite link ...
Hi all! Pretty new to app development in general so this might be something more generic than appwrite, but I've found (after reading the docs for the Teams API...