0

I need to store several large strings and objects with large string properties in the HttpRuntime.Cache

Does the HttpRuntime.Cache compress objects it stores?

rqmedes
  • 540
  • 2
  • 14

1 Answers1

1

No it does not, The objects that are stored in the cache aren't serialized so it can't really compress them.

See What is the default serialization used by the ASP.net HttpRuntime.Cache.

Community
  • 1
  • 1
argaz
  • 1,458
  • 10
  • 15