vote up 1 vote down star

Hello,

considering that fairly static data should not be re-evaluated but cached instead, I wondered if it is possible to use Reflection to obtain class properties once, and then cache them so that I could dynamically evaluate object properties and read/assign values, but not have the Reflection overhead every time I do that. Is this possible (Sample code?) ?

To clarify a bit, lets say I have this class:

public class Cloud
{
     Boolean IsWhite;
}

and I'm trying to now make a method that allows me to do something like this (pseudocode):

Update(myCloudInstance, new {IsWhite, true});

Update should now check with the cache first if it knows already the properties of Cloud (typeof(myCloudInstance)), and then use cached information to assign the property "IsWhite" the value "true" instead of doing Reflection again.

Any ideas on how to do this?

flag

68% accept rate

3 Answers

vote up 2 vote down check

It's not clear exactly what you're doing, but caching can certainly make a difference with reflection.

In particular, if you're invoking methods (or property getters/setters) and can do so in a type-safe way as far as the calling code is concerned, it can make a huge difference if you convert the MethodInfo into a strongly-typed delegate once and then reuse that.

If you could give us a complete example of what you're trying to do, that would help us to come up with more specific ideas or even code. If you're just going to cache a PropertyInfo that may not have as much (or any) effect - it's possible that the normal Type.GetProperty (etc) methods are already pretty fast. As ever with performance questions, the key is to measure what you're actually doing. Make a change and measure again, etc.

link|flag
Your answer hinted me in the right direction (how to cache PropertyInfo) which is actually faster than GetProperty (didnt time it yet, but responsiveness of my page appears improved.) – Alex Jul 30 at 6:39
If you can cache delegates to call the property in a type-safe way, that may well make it faster again. Definitely time it though... – Jon Skeet Jul 30 at 6:51
vote up 1 vote down

The cost of reflection does not need to be as big as you think. In addition to delegates (that Jon discusses) you can also use things like HyperDescriptor to minimise the cost of reflection without changing the code much - it simply becomes PropertyDescriptor instead:

PropertyDescriptorCollection props = TypeDescriptor.GetProperties(myCloudInstance);
// ideally cache props, but not essential

then

object val = props["IsWhite"].GetValue(myCloudInstance);

or if you use it lots, consider storing the PropertyDescriptor somewhere, too.

However... like Jon, I'm really not 100% sure what you're trying to do!

link|flag
vote up 0 vote down

Dynamic assembly should help with the concern about reflection performance. Somebody has implemented property assessors using dynamic assembly here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.