You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently by default all SQL journal implementations allow to perform live-queries on the database. However since SQL databases don't support push notifications, we do that by periodically pulling the latest changeset from the database.
However Postgres implements a feature called LISTEN/NOTIFY which could allow us to signal, when there's a new data awaiting to be read by live queries. Maybe we could use that.
The text was updated successfully, but these errors were encountered:
Currently by default all SQL journal implementations allow to perform live-queries on the database. However since SQL databases don't support push notifications, we do that by periodically pulling the latest changeset from the database.
However Postgres implements a feature called LISTEN/NOTIFY which could allow us to signal, when there's a new data awaiting to be read by live queries. Maybe we could use that.
The text was updated successfully, but these errors were encountered: