-
Notifications
You must be signed in to change notification settings - Fork 24
SDK Rust
wpplight edited this page Feb 5, 2026
·
2 revisions
Welcome to the EloqStore Rust SDK documentation. The Rust SDK provides a safe and ergonomic interface to EloqStore, supporting both concise RocksDB-style APIs and flexible Request Trait APIs.
- Quick Start - Get started with the Rust SDK in minutes
- Usage Guide - Comprehensive API documentation and examples
The EloqStore Rust SDK offers two API styles:
-
RocksDB-style API - Simple, familiar interface with
get(),put(),delete(), etc. - Request Trait API - Type-safe, composable API using Rust traits
Both APIs provide the same performance characteristics, so you can choose based on your needs.
Add EloqStore to your Cargo.toml:
[dependencies]
eloqstore = { git = "https://github.com/eloqdata/eloqstore.git" }See the Quick Start guide for detailed installation instructions.
- Start with the Quick Start guide to set up your environment and run your first example
- Read the Usage Guide to learn about both API styles and their use cases
- Quick Start - Installation and first steps
- Usage Guide - Complete API reference
- API Usage Guide - Underlying C++ API documentation
- Overview - Architecture and design
Contents
- EloqStore Wiki
- Overview
- Quick Start
- EloqStore FAQ
- API
- EloqStoreRust