Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mmzeeman/reggy

Flexible Erlang Process Registries
https://github.com/mmzeeman/reggy

Last synced: about 17 hours ago
JSON representation

Flexible Erlang Process Registries

Awesome Lists containing this project

README

        

Reggy
=====

Flexible Erlang Process Registries

Reggy is an application which allows one to start and use multiple process
registries for Erlang. The registries provides a number of useful features beyond what
the built-in registry has:

* Use multiple process registries.
* Use any term as a process alias.
* A process can have different aliases.


reggy:start(my_registry),
...
reggy:register_name({my_registry, {worker, 1}, WorkerPid}),
...
Pid = reggy:whereis_name({my_registry, {worker, 1}}),
...