Event connections load memory?

Hello, if I will have 500 event connections, is this good? Or better have 1 event connect?
Is there big difference?

Uh, is the 1 doing 500x the work?

Gut feeling is the 1 event because you’re not making 500 new event threads.

But test it and see!

For a connection, a event listener(constantly runs and checks for the event to be fired) will need to run, and then will load a new thread for each firing of the event.

A connection isn’t to heavy aslong you don’t have it being fired 1000 times a sec.