Difference between WebCache and MemoryCache in Caching

Viewed 2452

I am just trying to implement caching in my Web API. As I have already done the caching with the help of MemoryCache which uses System.Runtime.Caching.

Now I came to know that we can do caching with WebCache class too which uses System.Web.Helpers.

Is there any difference between them?

2 Answers
Related