pub trait InMemoryClient: Send + Sync {
// Required methods
fn get(&self, key: &str) -> Option<Value>;
fn set(&mut self, key: &str, value: Value);
fn delete(&mut self, key: &str) -> bool;
}Expand description
プロセスメモリクライアント 論理キー→物理キーの変換。request/config/headerに分散したデータアクセス