PHP 的同步 AMQP

发布于 2025-01-07 12:57:38 字数 122 浏览 2 评论 0原文

PHP 能否像 RPC 服务一样对待 AMQP,发送消息并阻塞直到返回回复?是否有任何好的示例,是否有任何库以易于使用的方式包装此类功能?

我希望拥有代理消息传递系统的灵活性,但避免 Web 层需要了解其异步性质。

Can PHP treat AMQP like an RPC service, and send a message and block until a reply is returned? Are there any good examples of this, and do any libraries wrap such functionality up in an easy-to-use way?

I'd like to have the flexibility of a brokered messaging system, but shield the web tier from needing to know about its asynchronous nature.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅语花开 2025-01-14 12:57:38

当然,绝对。看看 RPC 风格的请求如何在系统中流动:

  1. 发出请求
  2. 请求者现在阻塞等待对该请求的答复

这完全可以使用 AMQP 等异步消息系统来实现。您只需要自己进行 RPC 关联:

  1. 在异步消息中发送请求,其中包含唯一 ID(这不会阻塞)
  2. 从消息传递系统接收消息并阻塞,直到收到具有相同唯一 ID 的消息(该消息 不会阻塞)。表示您刚刚收到回复)

AMQP 代理RabbitMQ 提供在线文档说明如何做到这一点。

Sure, absolutely. Look at how an RPC-style request flows around a system:

  1. A request is issued
  2. The requester now blocks waiting for a reply to that request

That's completely implementable with an asynchronous message system like AMQP. You just need to do the RPC correlation yourself:

  1. Send your request within an asynchronous message with a unique ID within it (this does not block)
  2. Receive messages from the messaging system and block until you get a message back with the same unique ID (that means you've just received your reply)

RabbitMQ, an AMQP broker, offers documentation online on how to do exactly this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文