ocelot.cache.redis 源码
ocelot.cache.redis 简单的redis集成,用于在ocelot中进行缓存。 nuget包: 设置AddOcelotRedisIntegration在服务集合上调用AddOcelotRedisIntegration并传递redis连接字符串) . ConfigureServices ( s => { s . AddOcelot (); s . AddOcelotRedisIntegration ( " redis connection string here " ); }) 将缓存添加到路由:(添加FileCacheOptions.TtlSeconds属性) { " DownstreamPathTemplate " : " /{everything} " , " Downstream
用户评论