I want to create Erlang processes that will interact with a C program through a port driver.
As spawning many of these processes can be inefficient, can I create one Erlang process that receives messages and queues these messages for processing using C program?
How will this C program begin to wait for incoming tasks, will it be blocked?
What is the best strategy / architecture?
Thanks!
c erlang system distributed
carlosalbertomst
source share