开发者

HttpContext.Current.Cache performance

开发者 https://www.devze.com 2023-01-25 08:16 出处:网络
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).

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消