mirror of
https://gitee.com/energye/energy.git
synced 2024-12-12 12:25:23 +08:00
14 lines
389 B
Markdown
14 lines
389 B
Markdown
|
### Go语言实现的多进程IPC通信
|
||
|
|
||
|
### 简介
|
||
|
```text
|
||
|
基于 net socket 和 unix domain socket
|
||
|
```
|
||
|
### 通信-通道选择
|
||
|
| 系统 | 版本 | IPC |
|
||
|
|---------|----------------|------------|
|
||
|
| windows | < 10.17063 | net socket |
|
||
|
| windows | >= 10.17063 | unix |
|
||
|
| linux | all | unix |
|
||
|
| macosx | all | unix |
|