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

问题描述

我希望能就这两个消息传递系统中的哪一个提供一些一般性的指示和意见

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

  • 更易于管理
  • 需要了解和避免的陷阱或魔法的东西更少
  • 总体依赖较少
  • 使用起来很简单.

推荐答案

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:02