Microsoft.ApplicationServer.Caching namespace will it support with out appfabric server caching?
相关问题
- Any distributed cache systems that allows for tagg
- AppFabric Cache 'Design' - Caching Individ
- App Fabric Visual Studio 2013 Issue
- How to design an ASP.NET MVC site for caching with
- SQLCacheDependency and AppFabric Server
相关文章
- App Fabric Visual Studio 2013 Issue
- How to design an ASP.NET MVC site for caching with
- SQLCacheDependency and AppFabric Server
- 哪里是对数据高速缓存的增量方法?(Where is the Increment method on
- Windows工作流基础在本地托管的和网络API(Windows Workflow Foundati
- Is it possible to be notified when AppFabric is ev
- AppFabric缓存或SQL Server - 具体方案(APPFabric Caching o
- How to fake a directory listing in IIS? VirtualPat
The question I think you're asking is: if I'm using the Microsoft.ApplicationServer.Caching namespace in my code, will it still work if I don't have AppFabric installed on the server?
AppFabric doesn't have to be installed on your web server, all the binaries necessary at runtime will be in your application's
bin
folder, but if it isn't installed, you'll need at least one other server that does have it installed. If you don't (or can't) have any servers with AppFabric installed then your application won't be able to use AppFabric caching and you'd be better to look at usingSystem.Runtime.Caching
instead.