Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inter-process communication in Lua

Tags:

lua

ipc

I have two applications (both pure Lua, on Windows) and they should be able to talk to each other. I used luasocket TCP/IP module with success; but I want to know what other methods can I use to achieve this?

like image 832
wiki Avatar asked Jul 23 '12 06:07

wiki


1 Answers

Steve Donovan's winapi library supports IPC through named pipes, which are similar to Unix domain sockets.

Examples are available here and here.

like image 162
furq Avatar answered Oct 04 '22 01:10

furq