从 Ruby 调用 Erlang

发布于 2024-08-17 08:45:52 字数 143 浏览 3 评论 0原文

我应该使用什么最棒的 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 技术交流群。

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

发布评论

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

评论(3

岁月蹉跎了容颜 2024-08-24 08:45:52

出色地。我正在使用 BERT-RPC 并且对它很满意。

http://github.com/mojombo/bertrpc

Well. I am using BERT-RPC and happy with it.

http://github.com/mojombo/bertrpc

九公里浅绿 2024-08-24 08:45:52

对于 rpc 调用,rinterface 可能是正确的选择。
来自自述文件:

r = Erlang::Node.rpc("math","math_server","add",[10,20])
if r[0] == :badrpc
   puts "Got and Error. Reason #{r[1]}"
else
   puts "Success: #{r[1]}"
end

For rpc calls, rinterface might be the right option.
From the README:

r = Erlang::Node.rpc("math","math_server","add",[10,20])
if r[0] == :badrpc
   puts "Got and Error. Reason #{r[1]}"
else
   puts "Success: #{r[1]}"
end
海拔太高太耀眼 2024-08-24 08:45:52

我认为(有人证明我错了)你根本不应该将 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.

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