Erlang Web 框架可以作为 OTP 应用程序运行
我正在开发一个小型 Erlang/OTP 系统,我需要一个 Web 前端。
由于我不想自己编写所有用户、注册和数据库功能,因此我正在寻找一个框架。
我想把它合并到系统中,并由一个主管监督,使系统的所有组件都具有容错能力。
是否存在一个基于 Erlang 的 Web 框架可以用作 Erlang/OTP 应用程序的受监督部分?
I am developing a small Erlang/OTP system and I need a web frontend for it.
As I don't want to write all that users, registration and db functionality myself, I am searching for a framework.
I would like to incorporate it into the system and be supervised by a supervisor to make all the components of the system fault-tolerant.
Does there exist an Erlang-based web framework which can be used as a supervised part of an Erlang/OTP application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此链接: http://buffered.io/posts/webmachine -erlydtl-and-riak-part-1/
他使用 webmachine、Riak 和 Rebar 构建 OTP 应用程序。我喜欢他将核心服务器代码与 Web 应用程序代码分开的方式。这意味着您可以使用您喜欢的任何 Web 框架(请参阅此处:https://stackoverflow.com/questions/1822518/current-state-of-erlang-web-development-frameworks-template-languages)与后面的核心服务器进行通信。
See this link: http://buffered.io/posts/webmachine-erlydtl-and-riak-part-1/
He uses webmachine, Riak and Rebar to build an OTP application. I liked the way he separated the core server code from the web application code. What that means is that you can use any web framework that you like (see here: https://stackoverflow.com/questions/1822518/current-state-of-erlang-web-development-frameworks-template-languages) to communicate with the core server in the back.