views:

583

answers:

3

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?

+1  A: 

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

Tim Merrifield
+2  A: 

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.

Lasse V. Karlsen
Thanks - it sounds like there isn't a completely accurate way, but it might be good enough for what I'm trying to do.
Jon Tackabury
A: 

One thing you can do is serialize the object to a file on disk.

Does anyone have any sample code to take arbitrary stuff from HttpRuntime.Cache and serialize it? I tried the ASP Alliance tool and I get "Data could not be serialized to Xml" for most of the objects I'm interested in...

Jeff Atwood