Reputation: 5475
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
Reputation: 2541
Don't forget about Microsoft Enterprise Library Caching Application Block
Upvotes: 1
Reputation: 10296
System.Web.Caching.Cache is your friend. For Framework 4.0 or higher use the MemoryCache or the ObjectCache.
Upvotes: 1