Native LavaDB queries. CRDT replication. SQLite at the edge. 1-2ms globally.
No SQL. No ORM. Just ask.
for users where age over 18 and active is 1 show name, email
[
{ "name": "Alice", "email": "alice@example.com" },
{ "name": "Bob", "email": "bob@example.com" },
{ "name": "Carol", "email": "carol@example.com" }
]
insert into users {
name → "Alice",
age → 25,
active → 1
}
update users
where id is 123
set age → 26
delete from users
where active is 0
SQLite at edge. No network roundtrips. 1-2ms queries globally. 30-203x faster than Firebase.
Conflict-free replication across 300+ locations. Offline-first. Eventual consistency.
Query in LavaDB syntax. No SQL to learn. Type-safe. Auto-completion.
Custom binary format. 80% smaller payloads. No JSON/Protobuf overhead.
$0.015/GB/month. Zero egress fees. Petabyte scale. Automatic backups.
Subscribe to queries. Live updates. WebSocket connections. Sub-10ms latency.
How CRDTs make distributed databases simple
| Feature | FlashDB | Firebase | Supabase |
|---|---|---|---|
| Query Latency | 1-2ms | 45ms | 30ms |
| Write Latency | 2ms | 80ms | 50ms |
| Global Replication | 10ms CRDT sync | 200ms | Manual |
| Offline Support | ✓ Native CRDTs | ✓ Limited | ✗ |
| Query Language | LavaDB (natural) | JavaScript API | SQL |
| Cost (10GB) | $0.15/month | $2.40/month | $0.25/month |
Multiplayer games, collaborative tools, live dashboards. Sub-10ms sync.
Offline-first. CRDT sync when online. Perfect for unstable networks.
Multi-region deployment. Users read from nearest edge. Always fast.
Zero cold starts. Deployed with InstantAPI. Query from edge functions.
Join developers building real-time apps with sub-2ms latency.
Start Building Free