Implement WCF Application Caching

I'm just wondering how .net wcf application caching is implemented? Is it a single thread or multiple threads? and if it's multiple threads, how do we apply application caching as a single thread. Thanks:)

0
web-services
source share
1 answer

WCF does not have its own caching implementation. You will remain on your own to use, say, the Cache object that ships with ASP.NET, or if you want to use a third-party tool or Microsoft Caching application block.

+5
source share

All Articles