Skip to content

RedDB v1.3.1

Choose a tag to compare

@github-actions github-actions released this 22 May 02:08
· 1201 commits to main since this release
de90f8f

RedDB v1.3.1

What's in 1.3.1

Full Changelog: v1.3.1...v1.3.1


Install

npm / pnpm:

pnpm add @reddb-io/cli    # CLI launcher (`red` binary wrapper)
pnpm add @reddb-io/sdk    # Node/TS driver package (native protocol + spawn)
pnpm add @reddb-io/client # Thin remote-only client

Binaries (Linux x86_64):

# Full server + embedded engine
curl -fsSL https://github.com/reddb-io/reddb/releases/download/v1.3.1/red-linux-x86_64 -o red && chmod +x red
# Thin remote-only client (~2 MB)
curl -fsSL https://github.com/reddb-io/reddb/releases/download/v1.3.1/red_client-linux-x86_64 -o red_client && chmod +x red_client

Docker:

docker run --rm ghcr.io/reddb-io/reddb:v1.3.1 version

Or via Docker (thin client, ~7 MB):

docker run --rm ghcr.io/reddb-io/reddb-client:v1.3.1 red://reddb.example.com:5050 -c "SELECT 1"

Crate (Rust)

[dependencies]
reddb-io = "1.3.1"