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

voluntas

voluntas

Posted on January 21, 2020

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
💖 💪 🙅 🚩
voluntas
voluntas

Posted on January 21, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related