mirror of
https://gitee.com/energye/energy.git
synced 2024-12-15 01:41:49 +08:00
14 lines
430 B
Markdown
14 lines
430 B
Markdown
|
### Multi process IPC communication implemented in Go
|
||
|
|
||
|
### introduction
|
||
|
```text
|
||
|
based net socket & unix domain socket
|
||
|
```
|
||
|
### Communication - Channel Selection
|
||
|
| OS Version | version | IPC |
|
||
|
|------------|----------------|------------|
|
||
|
| windows | < 10.17063 | net socket |
|
||
|
| windows | >= 10.17063 | unix |
|
||
|
| linux | all | unix |
|
||
|
| macosx | all | unix |
|