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
- Prevent Appwrite from pulling weekly unu...
Hi, I only use node/php runtimes for functions and static-1/node for site. However, appwrite keeps pull gigabytes of runtimes. It makes my VM backup unnecessar...
- Dart Runtime as Function is missing
Hey guys, I set the _APP_FUNCTIONS_RUNTIMES to dart-3.10 and redeployed the appwrite stack but unfortunately the dart runtime doesnt show up. I copied the val...
- Go 1.25 runtime
So I'm trying to use go 1.25 for my functions and I can only find go-1.23 as a function runtime. So I did some searching and found https://github.com/appwrite/a...