pub trait FeatureCache: Send + Sync {
// Required methods
fn get(&self, key: &str) -> BoxFuture<'_, Option<GrowthBookResponse>>;
fn set(&self, key: &str, value: GrowthBookResponse) -> BoxFuture<'_, ()>;
}pub trait FeatureCache: Send + Sync {
// Required methods
fn get(&self, key: &str) -> BoxFuture<'_, Option<GrowthBookResponse>>;
fn set(&self, key: &str, value: GrowthBookResponse) -> BoxFuture<'_, ()>;
}