Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get the size of an object in the HttpRuntime.Cache?

I am currently storing many different types of objects in the ASP.NET HttpRuntime.Cache and I was wondering if there is a way to figure out how big each object is?

like image 395
Jon Tackabury Avatar asked Nov 28 '08 20:11

Jon Tackabury


2 Answers

Look at these questions:

Getting the size of a field in bytes with C#
Find out the size of a .net object

In particular, look for Jon Skeet's answer in those questions. They will tell you why the number won't be accurate.

As for getting an estimate, there is no way to do that unless there are certain criteria to be met for your object.

For instance, if you have many objects in the cache, sharing references to some common object instances, serializing out one of those objects in the cache will serialize out a copy of those common objects as well, inflating the results.

like image 81
Lasse V. Karlsen Avatar answered Sep 28 '22 05:09

Lasse V. Karlsen


One thing you can do is serialize the object to a file on disk. That should give you an idea.

This cache manager from ASP Alliance might help as well

like image 42
Tim Merrifield Avatar answered Sep 28 '22 05:09

Tim Merrifield