0

我正在按照他们的教程使用 Azure 的缓存服务预览版。使用 IIS Express 在本地运行良好。但是,当我部署到登台服务器时,我收到以下错误:

Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'Microsoft.ApplicationServer.Caching.DataCache.DataCache(string)' is inaccessible due to its protection level

我正在DataCache使用以下代码进行初始化,这会引发上述错误:

_cache = new DataCache("cacheName", "configurationName");

我正在使用 Azure Cache NuGet 包,并且所有 DLL 在 bin 目录中看起来都是正确的。任何帮助将不胜感激。

4

1 回答 1

0

这最终与安装在登台服务器 (Windows 2008 R2) 上的 AppFabric 角色功能发生冲突。删除该功能后,Azure 缓存就可以正常工作了。

于 2013-10-08T22:00:13.957 回答