Integrating Erlang with C++

前端 未结 4 1315
情深已故
情深已故 2020-12-12 18:10

What interfaces exist to tie Erlang with C++?

4条回答
  •  天涯浪人
    2020-12-12 18:40

    • Native implemented functions: available in the latest Erlang/OTP version, allows you to implement any of your functions in C.

    • Port drivers: you can link a C code to the Erlang VM, and access it using port_command.

    • C Nodes: With the ei library you can mimic a VM and talk to your Erlang VMs using the Erlang distribution format.

提交回复
热议问题