您应该将应用程序属性放在 rebar erlang 应用程序中的什么位置?

发布于 2025-01-04 06:29:58 字数 90 浏览 1 评论 0原文

新手问题:我编写了第一个基于 rebar 的 erlang 应用程序。我想配置一些基本属性,例如服务器主机等。放置它们的最佳位置在哪里以及如何将它们加载到应用程序中?

A newbie question: I wrote my first rebar based erlang application. I want to configure some basic properites like server host etc. Where is the best place to put them and how should I load them into the app?

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

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

发布评论

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

评论(1

守护在此方 2025-01-11 06:29:58

接下来的步骤是发布版本并在其中创建节点。节点在独立的 Erlang VM 中运行您的应用程序。使用 rebar 创建版本的一个很好的起点:

Erlang 应用程序 使用 Rebar 进行管理

创建版本后, 。然后,可以将节点中所有应用程序的配置属性添加到

{your-app}/{release}/files/sys.config

您可以按如下方式读取各个属性:

Val = application:get_env(APP, KEY)

或者,可以将应用程序的所有属性读取为

Config = application:get_all_env(APP)

sys.config 中,可以将属性添加为一个proplist

例子:

    {myapp,
      [
       {port, 1234},
       {pool_size, 5}
      ]
    }

The next steps are to make a release and create a node in it. A node runs your application in a standalone Erlang VM. A good starting point for creating a release using rebar:

Erlang Application Management with Rebar

Once you have created a release. The configuration properties for all applications in your node can then be added to

{your-app}/{release}/files/sys.config

You can read individual properties as follows:

Val = application:get_env(APP, KEY)

Alternatively, all properties for your application can be read as

Config = application:get_all_env(APP)

In sys.config, properties can be added as a proplist.

Example:

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