HttpContext.Current.Cache performance
I'm on IIS6 > ASP .NET > C# > WebService
I have to put in Cache a lot of data (thousands of serialized object of about 2MB each).
How does IIS6 manage HttpContext.Current.Cache
- does开发者_C百科 it save in RAM or temp file?
Can I compress data before caching?
What are the alternatives of HttpContext.Current.Cache?
By default it is saved in RAM. If you have saving that large amount of data you should think about saving it in a database.
精彩评论