1

尝试在本地创建 azure 缓存实例时出现 InvalidOperationException(异常和代码如下所示)。该代码正在从控制台应用程序运行。当我在 azure 模拟器中以工作角色运行它时,它工作正常。

是否可以在不在模拟器中运行的情况下使用 Azure 缓存?

{System.Reflection.TargetInvocationException:调用的目标已引发异常。
---> System.InvalidOperationException:角色发现数据在 Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.get_Roles()不可用

配置

  <dataCacheClients>
    <dataCacheClient name="mycache.cache.windows.net">
      <autoDiscover
        isEnabled="true"
        identifier="mycache.cache.windows.net" />
      <securityProperties mode="Message" sslEnabled="false">
        <messageSecurity authorizationInfo="[mytoken]=" />
      </securityProperties>
    </dataCacheClient>
  </dataCacheClients>

代码:

        bool autoDiscover = true;
        string identifier = "foo";

        var cacheFactoryConfiguration = new DataCacheFactoryConfiguration
        {               
            AutoDiscoverProperty = new DataCacheAutoDiscoverProperty(autoDiscover, identifier),
            TransportProperties = new DataCacheTransportProperties { MaxBufferSize = int.MaxValue },
            IsCompressionEnabled = true,
            MaxConnectionsToServer = 3
        };

        var dataCacheFactory = new DataCacheFactory(cacheFactoryConfiguration);
4

1 回答 1

0

是的,但不是自动发现功能。AutoDiscovery 是角色内缓存的一项功能,需要 Azure RoleEnvironment(因此会出现错误)。

// Cache client configured by settings in application configuration file.
DataCacheFactoryConfiguration config = new DataCacheFactoryConfiguration("mycache.cache.windows.net");
DataCacheFactory cacheFactory = new DataCacheFactory(config);
DataCache defaultCache = cacheFactory.GetDefaultCache();    

// Put and retrieve a test object from the default cache.
defaultCache.Put("testkey", "testobject");
string strObject = (string)defaultCache.Get("testkey");

另请注意- 我不会在 Azure 共享缓存上进行任何开发 - 该服务将于 2014 年停用 - 请参阅http://www.windowsazure.com/en-us/pricing/details/cache/

于 2013-10-13T14:10:57.310 回答