Lovin
Lovin

Reputation: 51

Is there any light weight Java Message Queue for Backend process communication?

I am developing a application , in which backend will be in java. In backend there are many processes. For communication I require message queue. I have searched for message queue in java , I got JMS. But as i know that is for Web applications and that will increase overhead in our project. so is there any basic light weight java message queue?

Upvotes: 5

Views: 2792

Answers (2)

Marko Topolnik
Marko Topolnik

Reputation: 200206

JMS is a standard and not a concrete implementation. Investigating the offer on JMS implementations is your best route. ActiveMQ is a well-known implementation. It is industrial-strength, but it is not of necessity heavyweight. There may be other offerings as well.

Upvotes: 3

jderda
jderda

Reputation: 890

Any additional component will add some overhead, the question is how much. On production we use HornetQ, and when properly configured it can be fast. Or even faster

There are also many alternatives, among those considered 'light':

Upvotes: 1

Related Questions