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
Zero uses Postgres “[Event Triggers](https://www.postgresql.org/docs/current/sql-createeventtrigger.html)” when possible to implement high-quality, efficient [schema migration](zero-schema/#migrations).
23
25
@@ -92,3 +94,15 @@ support IPv6, but some do not. For example, if you are running `zero-cache` in A
92
94
difficult.
93
95
94
96
IPv4 addresses are only supported on the Pro plan and are an extra $4/month.
97
+
98
+
## Neon
99
+
100
+
Neon fully supports Zero, but you should be aware of how Neon's pricing model and Zero interact.
101
+
102
+
Because Zero keeps an open connection to Postgres to replicate changes, as long as zero-cache is running, Postgres will be running and you will be charged by Neon.
103
+
104
+
For production databases that have enough usage to always be running anyway, this is fine. But for smaller applications that would otherwise not always be running, this can create a surprisingly high bill. You may want to choose a provider that charge a flat monthly rate instead.
105
+
106
+
Also some users choose Neon because they hope to use branching for previews. Note that Zero doesn't support this usage model well yet, and if not done with care, Zero can end up keeping each Neon *preview* branch running too 😳.
107
+
108
+
We are actively working on better preview support.
0 commit comments