simple inter-process communication

后端 未结 3 905
盖世英雄少女心
盖世英雄少女心 2020-12-29 06:10

I\'m looking for a simple way to pass messages from one process (Perl script, short-lived) to another (Python script, long-running) - both processes local to the sa

3条回答
  •  情歌与酒
    2020-12-29 06:38

    And for powered-up communications in the same style as socket, consider looking at 0MQ. It can make use of different communication technologies depending where your two apps are located, and even for local processes it's very easy to use and solves the problems for you.

    http://zeromq.org

提交回复
热议问题