Examples of server configurations include:
server_publish_mode: signal, update
signal: sends an empty struct{} signal over pub-sub channel which triggers db fetch for every server (strong data reliability guarantees on clients compared to update).
update: sends full data of the changed entity, thereby preventing excessive db reads (can be useful when servers are many, and cached data is many).
Examples of server configurations include:
server_publish_mode:signal,updatesignal: sends an empty struct{} signal over pub-sub channel which triggers db fetch for every server (strong data reliability guarantees on clients compared toupdate).update: sends full data of the changed entity, thereby preventing excessive db reads (can be useful when servers are many, and cached data is many).