override protected IFeatureStore CreateStoreImpl(FeatureStoreCacheConfig caching)
 {
     return(RedisFeatureStoreBuilder.Default().WithCaching(caching).
            CreateFeatureStore());
 }
 override protected IFeatureStore CreateStoreImplWithPrefix(string prefix)
 {
     return(RedisFeatureStoreBuilder.Default().WithPrefix(prefix)
            .WithCaching(FeatureStoreCacheConfig.Disabled).CreateFeatureStore());
 }