protected override CachingStoreWrapperBuilder MakeWrapperBase() { return(CachingStoreWrapper.Builder(_core)); }
/// <summary> /// Creates a feature store instance based on the currently configured builder. /// </summary> /// <returns>the feature store</returns> public IFeatureStore CreateFeatureStore() { var core = new RedisFeatureStoreCore(this); return(CachingStoreWrapper.Builder(core).WithCaching(Caching).Build()); }