我需要使用两个缓存实例来实现Michael解决方案,就像他在WhatIfRedisStopsWorkingHowDoIkeepMyAppRunning中解释一样,但是在web.config中使用配置。
最后我只有这行代码
var defaultConfig = ConfigurationBuilder.LoadConfiguration("defaultCache");
我没有找到如何访问ConnectionMultiplexer来挂钩我的事件或通过配置来做...
有可能吗?
答案 0 :(得分:1)
有两种方法可以通过CacheManager中的app / web.config配置Redis, 通过ConnectionString
<connectionStrings>
<add name="redisFromConnectionStrings" connectionString="127.0.0.1:6379,allowAdmin=True,connectTimeout=11,ssl=False,abortConnect=False,connectRetry=10" />
</connectionStrings>
<cacheManager.Redis xmlns="http://cachemanager.michaco.net/schemas/RedisCfg.xsd">
<connections>
<connection id="redisAppConfig" allowAdmin="true" password="" ssl="false" sslHost="" connectionTimeout="11" database="3">
<endpoints>
<endpoint host="127.0.0.1" port="6379" />
</endpoints>
</connection>
</connections>
</cacheManager.Redis>
:UPDATE: 目前没有选项可以访问CacheManager使用的连接多路复用器。 但是您可以将现有的多路复用器传递给配置。
var defaultConfig = ConfigurationBuilder.LoadConfiguration("defaultCache");
var multiplexer = ConnectionMultiplexer.Connect(...);
defaultConfig = defaultConfig
.Builder
.WithRedisConfiguration("redisConfig", multiplexer )
.Build();
当然,您必须自己实例化多路复用器,并且不能再使用web / app配置来配置Redis部件。你自己必须自己处理......