DEV Community

voluntas
voluntas

Posted on

gproc で指定したプロセスに登録されているキー一覧を取得する

gproc:info/2 を使う。

Erlang R16B03-1 (erts-5.10.4) [source] [64-bit] [smp:4:4] [async-threads:10] [kernel-poll:false] [dtrace]

Eshell V5.10.4  (abort with ^G)
1> application:start(gproc).
ok
2> gproc:add_local_property(<<"abc">>, 1).
true
3> gproc:info(self(), gproc).
{gproc,[{{p,l,<<"abc">>},1}]}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)