Interprocess Communication in Lua

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

+5
source share
3 answers

Steve Donovan winapi library supports IPC through named pipes similar to Unix domain sockets.

Examples are available here and here .

+4
source

If you want something multi-platform, consider 0MQ; Lua binding here

+2
source

OiL . ( CORBA).

, , .

+1

All Articles