Mahmoud Farahat
Mahmoud Farahat

Reputation: 5475

how to implement caching in WCF REST web service in .net 3.5

I've created a custom WCF Rest web service in a sharepoint site which uses .net 3.5 only not 4 , I found that Question , marc_s talked about REST Starter Kit but I found that it's no longer supported .

Any ideas about how to implement caching in this situation ?

Thanks.

Upvotes: 0

Views: 765

Answers (2)

SalientBrain
SalientBrain

Reputation: 2541

Don't forget about Microsoft Enterprise Library Caching Application Block

Upvotes: 1

Oliver Weichhold
Oliver Weichhold

Reputation: 10296

System.Web.Caching.Cache is your friend. For Framework 4.0 or higher use the MemoryCache or the ObjectCache.

Upvotes: 1

Related Questions