Rust SDK Overview
The Stitchd Rust SDK provides server-side, in-process flag evaluation. Rule-based segments are evaluated locally; list-based segments fall back to a REST membership check (optionally pre-warmed via an LFU cache).
Key Features
- Streaming gRPC sync — flag definitions are pushed to the SDK and cached in memory
- In-process rule evaluation — zero network hops for rule-based decisions
- LFU pre-warmed list-segment cache — hot contexts avoid REST round-trips
- Thread-safe
Arc<SdkClient>— clone freely across Tokio tasks
Getting Started
See Quickstart for a code example, or browse the
full API reference generated by cargo doc.