lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Sun, Aug 20, 2006 at 08:35:58PM +0200, Frantisek Fuka wrote:
> I didn't try luasocket yet but this also seems like unnecesarily
> complex solution for my simple problem...

sockets should not be complex, and they are the standard unix IPC
mechanism for this sort of thing.

Should be no harder than os.execute("mkfifo"), and advantage of sockets
is they clean up after themselves... Unix domain sockets would be what
you want.

Sam