2017-02-07 14 views
0

, 나는 (로컬 호스트를 들어, 모두가 잘 작동)의 Web.config이를 구성한구성 OutputCache를 내 OutputCache를위한 레디 스에 연결을 시도하고 5

<system.web> 
    <caching> 
     <outputCache defaultProvider="localRedisOutputCache"> 
     <providers> 
      <add name="localRedisOutputCache" type="Microsoft.Web.Redis.RedisOutputCacheProvider" host="127.0.0.1" accessKey="" ssl="false" />   
     </providers> 

     </outputCache> 
    </caching> 
</system.web> 
나는 this article을 읽을 모든 가능성을 테스트하지만 결과 한

<system.web> 
    <caching> 
     <outputCache defaultProvider="remoteRedisOutputCache"> 
     <providers> 
      <add name="remoteRedisOutputCache" type="Microsoft.Web.Redis.RedisOutputCacheProvider" host="{{myName}}.redis.cache.windows.net" accessKey="{{MyAccessKey}}" ssl="true" /> 

     </outputCache> 
    </caching> 
</system.web> 

하지만 내 푸른 레디 스를 변경하면, 그것은 작동하지 않습니다 .... 예외가 없으며 솔루션이 올바르게 컴파일됩니다.

내가 무엇이 누락 되었습니까?

감사합니다.

답변