Downloads

Pre-built binaries for oxidb-server and oxidb CLI. Statically linked on Linux (musl). No dependencies required.

v0.18.0

2026-03-05 latest

OxiWire binary protocol, .NET EF Core provider, parallel serialization, MsgPack removed. Full changelog

PlatformArchitectureFileSizeType
Linux x86_64 oxidb-server-v0.18.0-linux-amd64.tar.gz 5.4 MB musl static Download
Linux ARM64 oxidb-server-v0.18.0-linux-arm64.tar.gz 4.8 MB musl static Download
macOS ARM64 (Apple Silicon) oxidb-server-v0.18.0-darwin-arm64.tar.gz 4.6 MB tar.gz Download
macOS x86_64 (Intel) oxidb-server-v0.18.0-darwin-amd64.tar.gz 5.1 MB tar.gz Download
Windows x86_64 oxidb-server-v0.18.0-windows-amd64.zip 5.0 MB zip Download
SHA256 Checksums txt Verify

Quick Install (Server)

# Linux / macOS
curl -LO https://oxidb.baltavista.com/releases/v0.18.0/oxidb-server-v0.18.0-linux-amd64.tar.gz
tar xzf oxidb-server-v0.18.0-linux-amd64.tar.gz
./oxidb-server

# Or use as a Rust library
cargo add oxidb

oxidb CLI v0.18.0

2026-03-05 latest

Interactive shell and REPL with MongoDB-style syntax, SQL support, vector search, and embedded mode.

PlatformArchitectureFileSizeType
Linux x86_64 oxidb-cli-v0.18.0-linux-amd64.tar.gz 3.9 MB musl static Download
Linux ARM64 oxidb-cli-v0.18.0-linux-arm64.tar.gz 3.6 MB musl static Download
macOS ARM64 (Apple Silicon) oxidb-cli-v0.18.0-darwin-arm64.tar.gz 3.3 MB tar.gz Download
macOS x86_64 (Intel) oxidb-cli-v0.18.0-darwin-amd64.tar.gz 3.7 MB tar.gz Download
Windows x86_64 oxidb-cli-v0.18.0-windows-amd64.zip 3.8 MB zip Download
SHA256 Checksums txt Verify

Quick Install (CLI)

# Linux / macOS
curl -LO https://oxidb.baltavista.com/releases/v0.18.0/oxidb-cli-v0.18.0-linux-amd64.tar.gz
tar xzf oxidb-cli-v0.18.0-linux-amd64.tar.gz
./oxidb --data ./mydb              # embedded mode
./oxidb --host 127.0.0.1           # client mode

# Or build from source
cargo build --release -p oxidb-cli

Other Installation Methods

MethodCommand
Rust (embedded library)cargo add oxidb
Python clientpip install oxidb or copy oxidb.py
Python Embedded (FFI)pip install oxidb-embedded
Go clientgo get oxidb
.NET TCP clientdotnet add package OxiDb.Client.Tcp
.NET Embeddeddotnet add package OxiDb.Client.Embedded
.NET EF Coredotnet add package OxiDb.EntityFrameworkCore
Build server from sourcecargo build --release -p oxidb-server
Build CLI from sourcecargo build --release -p oxidb-cli