Hi all,
I am planning on developing a chat server to interface with my MyBB forum. As such I plan to use the JDBC / Vertx business in the server to authenticate thus allowing only registered uses into the chat. The issue I am concerned about though is limiting how many users can enter the chat. I don't want 1,000,000 users in the chat slowing my server to a halt. Is there a way using the event bus configuration to limit how many client can subscribe to event bus? I know the event bus uses TCP under the hood, but I didn't see any options for limiting the number of folks that can connect to the server. Even if it is event driven (i.e. to persistent connection), having the server dole out 1,000,000 messages every time someone sends a "lol" to the server seems like asking for trouble to me.
Thanks!