Go Client Library

The Geode Go client is a database/sql driver that uses QUIC + TLS 1.3. It supports prepared statements, transactions, and pooling via the standard Go database APIs.

Quick Start

import (
    "database/sql"

    _ "geodedb.com/geode"
)

db, err := sql.Open("geode", "localhost:3141")

DSN Options

Supported options: page_size, hello_name, hello_ver, conformance, ca, cert, key, insecure_tls_skip_verify.


Related Articles