vote up 9 vote down star
4

I have been looking into the castle project and specifically windsor. I have been so impressed with what is possible with this technology and the benefits of having a such a loosely coupled system are definitely apparent. The only thing i am unsure of is if using this method has any downsides, specifically in asp.net?? for example performance hits etc.

I am trying to make the benefits of this approach visible to my fellow developers here and am being hit with the following comebacks:

1) That is using reflection and each time that an abject is called from the container, reflection must used so performance will be terrible. (Is this the case? does it use reflection on every call?)

2) If i am relying on Interfaces how do i deal with objects that have extra methods and properties which have been tacked onto the class? (through inheritence)

flag

7 Answers

vote up 12 vote down check

To answer your questions:

1) That is using reflection and each time that an abject is called from the container, reflection must used so performance will be terrible. (Is this the case? does it use reflection on every call?)

  • no it does not. Most of the time it uses little refletion when you register the component. It may also use reflection while generatig proxy type, first time you request a component from the container

2) If i am relying on Interfaces how do i deal with objects that have extra methods and properties which have been tacked onto the class? (through inheritence)

  • it's all a matter of design. You don't want to have each and every object created by the container. You use it primarily for service dependencies. In this case, you don't care about what type is actually hiding behind the interface (that's the whole point of it, isn't it?).

You also can have class components, but they have limitations, and you must be aware of those (for example you can't intercept calls to non-virtual methods). I have found Windsor to be the more mature, and best suited to my style of development container of all.

Other than that. Performance. I haven't heard of a project that had to discard dependency container because of unacceptable performance. Windsor is really smart about it, and it caches the results of lengthy operations so that you don't have to pay the price twice. You may find charts on the Internet, comparing speed of many IoC containers. Two things to note about those: All containers are really fast. Don't think that the fact that other containers are faster on these charts than Windsor, means that they are better. Windsor does a lot of stuff for you that other containers don't.

link|flag
vote up 3 vote down

The one exception where performance of an IoC container is unacceptable in my experience is when trying to integrate/wrap the IoC container as an IServiceProvider for use in the ComponentModel - a once common example of this was when creating your own hosted winforms designer (normally to build some kind of custom designer, i.e. workflow/flowchart etc.)

Due to the way a number of winforms components behave, especially at design time, the cost of resolving a component will physically cause the mouse to "stutter" when dragging because the framework can make upwards of 30,000 service resolution calls a second - this is more a reflection on poor coding practices in the components themselves though I think, or at least due to assumptions being made about the service providers implementation being fast/simple.

In practice I've never found component resolution times to be a problem in even heavily loaded commercial applications.

link|flag
vote up 11 vote down

I've used IoC containers (Spring.NET and StructureMap) in several production apps under high load (not Facebook/MySpace high, but enough to stress out a few servers).

In my experience, even before I started using IoC, the biggest perf concern is the database and the interaction with the database -- optimizing queries, indexes, using 2nd-level caching, etc.

If you have a database involved with your app, then whatever performance hit Windsor or any other container may cause will be so infintessimally small compared to a DB round trip.

This is like people who compare the performance hit of the new() operator vs. Activator.CreateInstance() at 1-10ms when a single DB roundtrip is usually an order of magnitude more expensive.

I would advise you not to worry about the small stuff and concentrate on the big stuff.

Also, I'd like to advise you to look at StructureMap, as I believe it has a lot more functionality than Windsor and doesn't have a lot of Windsor's shortcomings (i.e. holding on to references and requiring you to release them, etc).

link|flag
Hammett committed Component Burden a couple of months ago (mail-archive.com/castle-project-devel@googlegroup…) – Mauricio Scheffer Dec 24 '08 at 13:22
vote up 2 vote down

Concerning the performance, see these articles:

But remember that some of these containers have newer (and probably faster) versions - especially Unity.

link|flag
interesting reading as a comparison of IOC frameworks (which is great) but the last graph on the first link suggests the performance drop using IOC over "new" is considerable – annakata Dec 23 '08 at 10:17
Definitely, it must be slower than simple new operator. I agree that speed critical operations should be done without DI/IoC. But in most cases, it is a good deal for the abilities you get. – gius Dec 23 '08 at 10:25
Moreover, think about absolute time of creating a new instance. Even if it takes 10x more time with DI/IoC, I think it is not the bottleneck of the application (unless you are creating millions of instances) and the performance hit is not remarkable (compared to the other operations). – gius Dec 23 '08 at 10:29
alas, my immediate concern is indeed for an app creating millions of instances hence my fixation on the numbers - guess I'll try windsor on the next project :) – annakata Dec 23 '08 at 10:58
Windsor is a good place to start. Now I use Unity (better for use with Enterprise Library and Medium trust) – gius Dec 23 '08 at 11:13
show 1 more comment
vote up 4 vote down

Significant start-up costs, almost no performance hit during operation (no reflection for calls, of course - everything's compiled during instantiation). Windsor is a bit on a heavy side, but with proper lifetime management shouldn't cause any problems.

A more important downside is that integration problems are not caught during build, and some not even at launch. Without carefull tracking of all modules' versions and continuous testing of whole system it's easy to get in trouble. Reflection helps here, so Windsor is better in that aspect than many other DI frameworks.

link|flag
vote up 1 vote down

General comment, not an answer

Can anyone be more qualitative about the performance impact, even ballpark figures? With the overhead of an HttpModule and reflection it feels like it would be an issue for high-performance asp.net apps.

tia

link|flag
vote up 7 vote down

One problem with Castle Windsor I came across is that it is not able to run in Medium Trust (without recompilation which I was not able to do). So I needed to switch from Windsor to Unity.

According to DI/IoC performance - I believe that the performance hit is not large especially when you keep in mind the power it has.

BTW: If you are beginning with DI/IoC, you should read this MSDN article.

link|flag
2  
About compiling Windsor to run on Medium Trust, maybe this can help: vhendriks.wordpress.com/2007/11/… – Mauricio Scheffer Dec 26 '08 at 17:53

Your Answer

Get an OpenID
or

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