从 Ruby 调用 Erlang
我应该使用什么最棒的 gem 从 Ruby 应用程序调用 Erlang 函数?我希望使用 rspec 来测试一些 gen_server 的东西。
Erlectricity 看起来很可靠,但没有像 Node#rpc 这样的东西,只是消息传递。有什么想法吗?
What is the most awesome gem I should use to call Erlang functions from Ruby app? I wish to use rspec for testing some gen_server stuff.
Erlectricity looking solid, but there is no something like Node#rpc, just message passing. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
出色地。我正在使用 BERT-RPC 并且对它很满意。
http://github.com/mojombo/bertrpc
Well. I am using BERT-RPC and happy with it.
http://github.com/mojombo/bertrpc
对于 rpc 调用,rinterface 可能是正确的选择。
来自自述文件:
For rpc calls, rinterface might be the right option.
From the README:
我认为(有人证明我错了)你根本不应该将 rspec 用于 gen_server 。
相反,您可以根据您的 gen_server 实际执行的操作,使用 eunit。
http://salientblue.com/codenotes/?name=erl_start
不,它离 rspec 还很远。
I think (someone prove me wrong) that you shouldn't use rspec for a gen_server at all.
Instead you could, depening on what your gen_server actually does, use eunit.
http://salientblue.com/codenotes/?name=erl_start
and no, its a long way from rspec.