本文介绍了哪个嵌入式消息系统 - > ActiveMQ或HornetQ的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很感激关于两个邮件系统中的哪一个的一般指示和意见

I would appreciate some general pointers and opinions regarding which of the two messaging systems is


  • 更易于管理

  • 有更少的陷阱或神奇的东西需要知道并避免

  • 具有较少的依赖性

  • 很容易使用。

  • easier to manage
  • has less gotchas or magic stuff one needs to know and avoid
  • has less overal dependencies
  • is simple to work with.

推荐答案

hornetQ有一个清晰的管理API,它非常易于使用。

hornetQ has a clear API for management and it's very easy to use.

hornetQ是针对嵌入式案例制作的。将它集成到您​​的代码中非常非常容易。事实上,您只需少于10行代码即可完成。

hornetQ was made for the embedded case. It is very, very easy to integrate it in your code. As a matter of fact you can do it with less than 10 lines of code.

HornetQ上的所有东西都是模块化的。对HornetQ唯一需要的依赖是Netty,它是网络提供商。

Everything on HornetQ is modular. The only required dependency on HornetQ is Netty which is the network provider.

HornetQ使用起来非常简单。清除API,主要是文档非常非常完整。

HornetQ is very simple to use. Clear API, and mainly, the documentation is very, very complete.

您不需要购买任何书籍来使用HornetQ。所有的文档都在hornetq的网站上免费提供。

You don't need to buy any books to use HornetQ. All the docs are right there for free at the hornetq's website.

这篇关于哪个嵌入式消息系统 - > ActiveMQ或HornetQ的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 07:03