使用 Kombu(胡萝卜)将其他数据与文件一起发送

发布于 2024-10-12 08:58:27 字数 154 浏览 4 评论 0原文

如何使用 Kombu 发送文件和其他数据?我使用rabbitmq作为经纪人。

例如 file.pdf 和字典 {'author': 'user'}

如果可能的话,我想在一条消息中执行此操作。但是如果您考虑使用 Kombu 的标准序列化器,您将如何绑定单独的消息?

How can I send a file along with other data using Kombu? I'm using rabbitmq as the broker.

e.g. file.pdf along a dictionary {'author': 'user'}

I'd like to do this in a single message if possible. But if you reckon using standard serializers of Kombu, how would you bind the separate messages?

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

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

发布评论

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

评论(1

卖梦商人 2024-10-19 08:58:27

有多种方法,但是怎么样:

producer.send({"author": "user", "file": file})

或:

producer.send(file, serializer=None, headers={"author": "user"})

标头只能是 AMQP 支持的类型。

There are several ways, but how about:

producer.send({"author": "user", "file": file})

or:

producer.send(file, serializer=None, headers={"author": "user"})

Headers can only be of types supported by AMQP though.

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