1
p2pCoder 2017-12-01 09:42:03 +08:00
|
2
northisland 2017-12-01 10:45:09 +08:00
我还记得 ZeroMQ 里的 4 种消息模式:
1 对 1 PAIR 客户端服务端 REQ-REP 订阅多种消息推送 SUB-PUB 生产者-消费者模式 PUSH-PULL 好像 C++里还有 route 模式 http://learning-0mq-with-pyzmq.readthedocs.io/en/latest/pyzmq/patterns/patterns.html |
3
xboylegend OP |
4
debuggerx 2017-12-01 14:34:53 +08:00
之前写的远程调用,linux 运行 client 将写好的代码发送到 win 的 server,编译好后再返回到 linux 上。
Server.py: https://gist.github.com/anonymous/063f0e39a8f974946a05ed3e7d6e8b6e Client.py: https://gist.github.com/anonymous/7f3f4c10a01a5694ff8bb4dd94341c0a 方法虽然古老,最少够小够轻,python 自带都不用再额外装库就能稳定工作了 |
5
fxxkgw 2017-12-01 18:29:41 +08:00
mq 或者 celery 感觉都可以
|