gpt4 book ai didi

c# - CacheManager如何在运行时修改加载的配置

转载 作者:可可西里 更新时间:2023-11-01 11:14:58 24 4
gpt4 key购买 nike

我正在使用 @Victor P solution管理我的应用程序中的缓存。配置是从应用程序设置中加载的,但我们有一个政策,即不在代码中添加敏感信息,另一方面,Redis 的生产实例需要身份验证。这个密码是从环境变量加载的,但是我找不到运行时修改Redis配置的方法。

这是我们现在的做法

// Locad configuration of cache type: MemoryCache or RedisCache
string cacheManagerName = ConfigurationManager.AppSettings["CacheManagerName"];

// Build cache configuration from configuration section
var config = ConfigurationBuilder.LoadConfiguration(cacheManagerName);

//TODO: Modify config if the variable environment for the password is set
// This will only necessary if the cache type is Redis

//Create cachemanager instance
_kernel.Bind(typeof(ICacheManager<>)).ToMethod((ctx) => CacheFactory.FromConfiguration(ctx.GenericArguments[0], config)).InSingletonScope();

配置示例:

<add key="CacheManagerName" value="RedisCache" />

<cacheManager xmlns="http://cachemanager.michaco.net/schemas/CacheManagerCfg.xsd">
<managers>
<cache name="MemoryCache" updateMode="None" enableStatistics="false" enablePerformanceCounters="true">
<handle name="default" ref="MemoryCacheHandle" />
</cache>
<cache name="RedisCache" updateMode="Up" enablePerformanceCounters="true"
enableStatistics="false" backplaneName="RedisConfigurationId"
backplaneType="CacheManager.Redis.RedisCacheBackplane, CacheManager.StackExchange.Redis"
serializerType="CacheManager.Serialization.Json.JsonCacheSerializer, CacheManager.Serialization.Json">
<handle name="RedisConfigurationId" ref="RedisCacheHandle" isBackplaneSource="true"/>
</cache>
</managers>
<cacheHandles>
<handleDef id="MemoryCacheHandle" type="CacheManager.SystemRuntimeCaching.MemoryCacheHandle`1, CacheManager.SystemRuntimeCaching"
defaultExpirationMode="Sliding" defaultTimeout="30m" />
<handleDef id="RedisCacheHandle" type="CacheManager.Redis.RedisCacheHandle`1, CacheManager.StackExchange.Redis"
defaultExpirationMode="Sliding" defaultTimeout="30m" />
</cacheHandles>
</cacheManager>
<cacheManager.Redis xmlns="http://cachemanager.michaco.net/schemas/RedisCfg.xsd">
<connections>
<connection id="RedisConfigurationId"
allowAdmin="true"
password=""
ssl="false"
sslHost="">
<endpoints>
<endpoint host="127.0.0.1" port="6379" />
</endpoints>
</connection>
</connections>
</cacheManager.Redis>

最佳答案

我想,从 app/web.config 中删除 secret 本身一直是个问题。有一个 documentation post which explains some options .

关于缓存管理器。您可以使用 <connectionStrings>用于配置 Redis 的部分,而不是 cacheManager.Redis 部分,然后将该连接字符串存储在一个单独的“ secret ”文件中


<connectionStrings configSource="ConnectionStrings.config">
</connectionStrings>

虽然在我看来这仍然很愚蠢。所以最好的方法是完全通过代码配置该部分并从一些安全存储中读取 secret 。顺便说一句,环境变量也根本不安全。

您可以“欺骗”缓存管理器并通过代码通过RedisConfigurations 添加redis 配置。 .并像往常一样引用配置 key 。

关于c# - CacheManager如何在运行时修改加载的配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52670925/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com