请问golang能像C语言一样操作linux系统上消息队列msgsnd/msgrcv吗?

hitperson · · 2230 次点击
jan-bar
想要拥有,必定付出。
https://github.com/jmptrader/go-sysvipc https://github.com/siadat/ipc 搜了2个。你可以参考下。应该都是用了cgo吧
#7
更多评论
这块 go 应该是强项,通过 goroutine + channel 实现。
#1
polaris
社区,需要你我一同完善!
在 linux 中,go 这两个系统调用是没有直接实现的,我觉得重写,应该根据业务走,而不是直译,通过 go 本身的机制,应该可以较好的实现你的需求
#2