FlareDeskDocs

Hyperdrive

Accelerated database connections

Hyperdrive accelerates connections to your existing databases by pooling and caching. FlareDesk lets you test connections and run queries against your Hyperdrive-connected databases.

Overview

Test Connections

Verify database connectivity

Run Queries

Execute SQL against your database

View Schema

Browse tables and columns

What is Hyperdrive?

Hyperdrive makes existing databases faster by:

  • Connection pooling: Reuses database connections to reduce latency
  • Query caching: Caches read queries at the edge
  • Global distribution: Routes to the nearest pool location
Supported databases: PostgreSQL, MySQL, and other SQL databases.

Testing Connections

  1. 1

    Navigate to Hyperdrive in the sidebar

  2. 2

    Select a Hyperdrive binding from the dropdown

  3. 3

    Click "Test Connection"

  4. 4

    View connection status and latency

Running Queries

  1. 1

    Click the "Query" tab

  2. 2

    Write your SQL query in the editor

  3. 3

    Click "Run" to execute

  4. 4

    View results in the data table

Note: Queries run against your actual database. Be careful with INSERT, UPDATE, and DELETE statements.

Configuration

Hyperdrive is configured in your wrangler.toml:

# wrangler.toml
[[hyperdrive]]
binding = "DB"
id = "your-hyperdrive-id"

Next Steps

Learn about Console Logs