The fastest database.
Ever.

Native LavaDB queries. CRDT replication. SQLite at the edge. 1-2ms globally.

1.5ms
Query Latency
203x
Faster than Firebase
16x
Cheaper

Natural Language Queries

No SQL. No ORM. Just ask.

LavaDB Query
for users where age over 18 and active is 1 show name, email
Result (1.5ms)
[
  { "name": "Alice", "email": "alice@example.com" },
  { "name": "Bob", "email": "bob@example.com" },
  { "name": "Carol", "email": "carol@example.com" }
]

Insert

insert into users {
  name → "Alice",
  age → 25,
  active → 1
}

Update

update users
where id is 123
set age → 26

Delete

delete from users
where active is 0

Why FlashDB?

Insanely Fast

SQLite at edge. No network roundtrips. 1-2ms queries globally. 30-203x faster than Firebase.

🌍

Global CRDT Sync

Conflict-free replication across 300+ locations. Offline-first. Eventual consistency.

💬

Natural Language

Query in LavaDB syntax. No SQL to learn. Type-safe. Auto-completion.

🔒

Zero Serialization

Custom binary format. 80% smaller payloads. No JSON/Protobuf overhead.

📦

R2 Storage

$0.015/GB/month. Zero egress fees. Petabyte scale. Automatic backups.

🔄

Real-time Sync

Subscribe to queries. Live updates. WebSocket connections. Sub-10ms latency.

Conflict-Free Magic

How CRDTs make distributed databases simple

Node A (NYC)
counter = 5
counter += 3
counter = 8
Merge
Node B (London)
counter = 5
counter += 2
counter = 7
After sync: Both nodes = 10 (8 + 2 or 7 + 3)
✓ No conflicts. No locks. Always consistent.

How We Compare

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

Built For

🎮 Real-time Apps

Multiplayer games, collaborative tools, live dashboards. Sub-10ms sync.

📱 Mobile Apps

Offline-first. CRDT sync when online. Perfect for unstable networks.

🌍 Global SaaS

Multi-region deployment. Users read from nearest edge. Always fast.

⚡ Serverless APIs

Zero cold starts. Deployed with InstantAPI. Query from edge functions.

Simple Pricing

Free

$0/month
  • ✓ 1GB storage
  • ✓ 100K queries/day
  • ✓ Global edge deployment
  • ✓ CRDT replication
  • ✓ Community support
Get Started

Enterprise

Custom
  • ✓ Unlimited storage
  • ✓ Dedicated infrastructure
  • ✓ 24/7 support
  • ✓ Custom SLA
  • ✓ On-premise option
  • ✓ SOC 2 compliance
Contact Sales

Ready for the fastest database?

Join developers building real-time apps with sub-2ms latency.

Start Building Free