Reputation: 6029
I want to write a Java SE client application that talks to a Java server. Imagine something akin to an online game where there is a lot of traffic and potentially multiple clients connected to the same server.
ActiveMQ seems to be a suitable choice here but since I have never used it like this I am not sure if it has the performance or characteristics.
Can someone advise if it is suitable, what pitfalls I may encounter and perhaps suggest a tutorial which demonstrates something similar to what I am considering?
Upvotes: 2
Views: 2151
Reputation: 4091
Yeah, I highly recommend ActiveMQ, it's fast, easy to install, it can handle all your requirements nicely. It's tight encoding option will really compress the message envelope size and it even supports a 'useCompression' option to compress the message bodies for you. It also has a nice C++ client
Upvotes: 5