1

我正在尝试将gproc作为应用程序内的依赖项启动,但它失败了:

{error,{not_started,gproc}}

这是 Rebar3 在编译时使用的 app.src 文件:

{application, myapp,
 [{description, "MyApp"},
  {vsn, "0.1.0"},
  {registered, []},
  {mod, { my_app, []}},
  {applications,
   [kernel,
    stdlib,
    sasl,
    gproc    <--- Dependency, and is compiled with Rebar3
   ]},
  {env,[]},
  {modules, []},

  {maintainers, []},
  {licenses, []},
  {links, []}
 ]}.

从外壳开始,application:start(gproc).然后application:start(myapp).一切都运行良好。我不明白为什么...

也许是因为某种竞争条件?

外壳开始于:

erl -pa _build/default/lib/*/ebin -boot start_sasl -eval "application:start(myapp)"

编辑:当使用rebar3 shell一切正常时,与我使用的 shell 命令有什么区别?

4

1 回答 1

1

采用

application:ensure_all_started(myapp).

plainstart尝试仅启动请求的应用程序,仅验证依赖项是否已在运行。

文件:

  • application:start/1

    启动应用程序。如果没有加载,应用程序控制器首先使用 load/1 加载它。它确保加载任何包含的应用程序,但不会启动它们。假设在 Application 的代码中已经处理了这一点。

  • application:ensure_all_started/1

    等效于对应用程序尚未启动的所有依赖项重复调用 start/1,2

于 2016-07-21T02:18:53.830 回答