Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 894 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 894 Bytes

Edge Database Latency

This demo helps observe the latency characteristics of querying different popular data services from varying compute locations.

https://edge-data-latency.vercel.app

Providers

  • Convex (SDK)
  • Fauna
  • Grafbase (GraphQL)
  • Neon
  • PlanetScale (Kysely + Serverless SDK)
  • Shopify (Storefront GraphQL API)
  • Supabase (supabase-js)
  • Tigris
  • Upstash (SDK)
  • Xata (TypeScript SDK)

Testing Methodology

  1. Smallest atomic unit, e.g. 1 item / row.
  2. Data schema:
interface EmployeeTable {
  emp_no: number;
  first_name: string;
  last_name: string;
}

Learn More