sarecrow
sarecrow

Reputation:

WCF Application Caching Implementation

i just wondering how the .net wcf application caching is implemented ?? It's single thread or multiple thread?? and if it's multiple thread how we enforce application caching to be single thread. Thank You :)

Upvotes: 0

Views: 1157

Answers (1)

cruizer
cruizer

Reputation: 6151

WCF doesn't come with its own caching implementation. You are left on your own to use, say, the Cache object that comes with ASP.NET or if you want to use a third party tool or Microsoft's Caching Application Block.

Upvotes: 5

Related Questions