用于 Python 和 Erlang 交互的轻量级协议
Python 代码和 Erlang 代码通过 Internet 进行交互时首选使用哪种协议? ASN.1 对我来说是理想的选择,但它在 Python 中的实现无法根据符号生成编码器/解码器。
What protocol preferred to use for interaction between Python-code and Erlang-code over Internet? ASN.1 would be ideally for me, but its implementation in Python cannot generate encoder/decoder out from notation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您检查过 Google 的协议缓冲区吗?
它非常易于使用,并且有一个 Erlang 实现可用
Did you check Google's protocol buffers?
It is very easy to use and there is an Erlang implementation available
好吧,您可以使用 JSON 或 BERT。
JSON 很容易被人类读取,因为它只是 ASCII。要发送二进制数据,您需要对其进行编码(例如使用 base64)。
另一个解决方案是使用 BERT。 BERT 基于“erlang 外部二进制格式”进行序列化,因此 erlang 方面非常简单;)
Well, you could use JSON or BERT.
JSON is easily reable by humans, as it is ASCII only. To send binary data, you need to encode them (e.g. with base64).
Another solution would be using BERT. BERT is based on the "erlang external binary format" for serialization, so the erlang side is pretty simple ;)
另外,您可能还想看看 Apache Thrift,这是一个同时支持 Python 和 Erlang 的 IDL。
Also, you might want to have a look to Apache Thrift, an IDL supporting both Python and Erlang.