Pre-built binaries for oxidb-server and oxidb CLI. Statically linked on Linux (musl). No dependencies required.
OxiWire binary protocol, .NET EF Core provider, parallel serialization, MsgPack removed. Full changelog
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| 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 | |||
# 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
Interactive shell and REPL with MongoDB-style syntax, SQL support, vector search, and embedded mode.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| 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 | |||
# 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
| Method | Command |
|---|---|
| Rust (embedded library) | cargo add oxidb |
| Python client | pip install oxidb or copy oxidb.py |
| Python Embedded (FFI) | pip install oxidb-embedded |
| Go client | go get oxidb |
| .NET TCP client | dotnet add package OxiDb.Client.Tcp |
| .NET Embedded | dotnet add package OxiDb.Client.Embedded |
| .NET EF Core | dotnet add package OxiDb.EntityFrameworkCore |
| Build server from source | cargo build --release -p oxidb-server |
| Build CLI from source | cargo build --release -p oxidb-cli |