←back to thread

215 points Towaway69 | 6 comments | | HN request time: 0.832s | source | bottom

Hi There,

Erlang-RED has been my project for the last couple of months and I would love to get some feedback from the HN community.

The idea is to take advantage of Erlangs message passing and low overhead processes to have true concurrency in Node-RED flows. Plus also to bring low-code visual flow-based programming to Erlang.

1. nathanappere ◴[] No.44008591[source]
It does if you have blocking calls or you cannot yield to the event loop in time consuming code.
2. ummonk ◴[] No.44008598[source]
Are you asserting that single threaded execution of concurrent code is just as performant as multi-process execution?
replies(2): >>44008669 #>>44011649 #
3. Towaway69 ◴[] No.44008669[source]
Concurrency isn’t possible if there is only a single thread is my interpretation.
replies(1): >>44008999 #
4. hotpocket777 ◴[] No.44008999{3}[source]
That is not true at all. Concurrency is a way of writing programs and is an orthogonal concern to how the program gets executed.
5. ◴[] No.44009885[source]
6. lxe ◴[] No.44011649[source]
It certainly can be.