Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mmzeeman/reggy
- Owner: mmzeeman
- Created: 2012-12-15T22:47:29.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-16T23:38:23.000Z (about 12 years ago)
- Last Synced: 2024-11-16T06:50:27.231Z (about 2 months ago)
- Language: Erlang
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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}}),
...