vote up 2 vote down star

Just how much slower are events? I have written a streaming XML parser (that can handle open-ended and incomplete documents) and by tearing out the events and using an interface instead I got a significant speed boost.

Does any one else have any war stories?

(Let's not open the GC can of worms here, we all know it's broken :))

flag

slower than what? and since when is the GC broken? – VVS Oct 2 '08 at 12:58
Sweriously, you just opened a can of worms yourself. – mattlant Oct 2 '08 at 13:00
your brain is obviously broken, but lets not go there either. .. – Bob Dizzle Oct 2 '08 at 13:05
@bob-dizzle @david-humpohl We implemented IDisposable on our universal base class and explicitly cleared events. Memory usage dropped, oh, only about 900mb (half). Check your sources. bit.ly/ZNw9E. My brain may be broken, but my brain isn't running on customer's machines, see? – Jonathan C Dickinson Oct 8 '08 at 10:56

5 Answers

vote up 19 vote down check

Events firing are delegate invocations, which are a a bit slower than virtual calls

alt text

But dealing with interfaces for subscriber/publisher/observer/observable scenario is more painful that using events.

link|flag
Event are delegate calls as per your diagram. – leppie Oct 2 '08 at 13:24
A delegate call is a delegate invocation. The two following calls produce same IL: myEventHandler(this, EventArgs.Empty); myEventHandler.Invoke(this, EventArgs.Empty); – Romain Verdier Oct 2 '08 at 13:43
vote up 0 vote down

Delegates have a slight overhead compared to virtual method calls because they're lists of methods and can therefore theoretically invoke multiple handlers.

link|flag
I am not sure, the reason I used an interface is because there was only ever one subscriber. Which means that the list would have one item. I wonder what is up, maybe I should crack open Reflector and look at the differences. – Jonathan C Dickinson Oct 2 '08 at 13:20
Even if the list had only one item, iterating over it instead of directly calling a method (even a virtual one) is bound to be slightly slower. – Konrad Rudolph Oct 2 '08 at 15:38
vote up 0 vote down

Events are definately slower than a straight function call, i can't tell you exactly how much slower, but significantly. You could also pass delegates around for "middle" ground. The .NET event system uses delegates, but calling a method directly through the delegate vs the whole event system is still faster.

link|flag
It's really strange. I mean if it runs on delegates why is it slower than using delegates themselves. – Jonathan C Dickinson Oct 2 '08 at 13:19
vote up 0 vote down

If there's no reflection involved in the calls then I assume the overhead is pretty negligible. Assumption could be wrong of course . Do you have a micro benchmark to demonstrate this?

link|flag
I could try whip one together. As I (think) I said, the speed increase was observational (but significant at that). – Jonathan C Dickinson Oct 2 '08 at 13:21
vote up 4 vote down

Events are really just delegates. From what I recall, they were made much faster in the 2.0 CLR. I'm surprised that replacing events with an interface made your code significantly faster - in my experience they're pretty fast, and if you're dealing with XML, I wouldn't have expected the event calls to be the bottlenecks.

Did your code constantly subscribe to and unsubscribe from events? Do you have any indication of the number of event calls that were made when parsing a particular document?

link|flag
"I'm surprised that events made your code significantly faster" - you mean slower ;) – VVS Oct 2 '08 at 13:09
No, there is one XML parser per client. Xml calls per document can range to the millions, it's an IM protocol. – Jonathan C Dickinson Oct 2 '08 at 13:16
I meant "surprised that moving away from events made your code significantly faster" - edited, thanks :) – Jon Skeet Oct 2 '08 at 13:16
On the bottlenecks, you are completely right. It's one of my gripes with XMPP, but I have authored a binary XML solution (it'ls like EXI, but really concentrates on speed and not size) that can be started (like STARTTLS) by the client at any point. – Jonathan C Dickinson Oct 2 '08 at 13:18

Your Answer

Get an OpenID
or

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