5 ms·
I don’t mean to minimize the huge effort by the Gleam team; however, Elixir cannot become Gleam without breaking OTP/BEAM in the same ways Gleam does. As it sta
by innocentoldguy 9mo ago
I don’t mean to minimize the huge effort by the Gleam team; however, Elixir cannot become Gleam without breaking OTP/BEAM in the same ways Gleam does. As it stands now, Elixir is the superior language between the two, if using the full Erlang VM is your goal.
- worthless-trash 9mo agoI use many of the otp functions in gleam on thr regular, what functionality cant i call? Gleam can call any erlang function, and can somewhat handle the idc types. [ im sure it has another name ]. Did i miss something that gleam fails on, because this is one of my concerns.
- innocentoldguy 9mo ago- No state machine behaviours. Gleam cannot do gen_statem. - Limited OTP system messages. Gleam doesn't yet support all OTP system messages, so some OTP debugging messages are discarded by Gleam. - Gleam doesn't have an equivalent of gen_event to handle event handlers. - Gleam doesn't support DynamicSupervisor or the :simple_one_for_one for dynamically starting children at runtime.
- worthless-trash 9mo agoI didn't know about the statem limitation, I have howerver worked around it with gen server like wrapper, that way all state transitions were handled with gleams type system. I have been meaning to ask about that on the discord but its one of the ten thousand things on my backlog. Maybe i could write a gen_event equivalent.. I have some code which does very similar things. Thank you for taking the time to respond.
- innocentoldguy 9mo agoYou're welcome. I'm sure at some point, Gleam will figure it all out.