Overview of Supabase Realtime features
mainSupabase Realtime is an Elixir-based server built with the Phoenix Framework that provides three core real-time capabilities over WebSockets:
- Broadcast: Low-latency transmission of ephemeral messages from client to client.
- Presence: Tracking and synchronizing shared state between connected clients.
- Postgres Changes: Listening to changes in your Postgres database and streaming them to authorized clients.
Note on Reliability: The server does not guarantee that every message will be delivered to all clients. It is designed for real-time updates rather than guaranteed message delivery protocols.