QuickDID is a high-performance AT Protocol identity resolution service written in Rust. It provides handle-to-DID resolution with Redis-backed caching and queue processing.
at main 8 lines 288 B view raw
1//! Lexicon resolution with caching support. 2//! 3//! This module provides implementations for resolving AT Protocol lexicons (NSIDs) 4//! to their schemas with various caching strategies. 5 6mod redis; 7 8pub use redis::{create_redis_lexicon_resolver, create_redis_lexicon_resolver_with_ttl};