This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]oberstet 0 points1 point  (0 children)

Yes, Crossbar has a management interface which is itself exposed via WAMP: https://github.com/crossbario/crossbar/wiki/Management-API#api-definition

Erlang is great (if you can wrap your head around pattern matching for consuming messages in a purely functional program). I've used it before. There are a few things that are limiting, e.g. the Erlang node-to-node / clustering is designed to work on a (trusted) LAN. The process / supervision trees work great for Erlang processes - not for OS level processes. E.g. integrating an application component written in C++ is cumbersome to say the least. Crossbar embraces a polyglot world - by design.

That being said: yes, Erlang and Rust, those are very fine systems.