发布于 2015-12-06 00:54:39 | 275 次阅读 | 评论: 0 | 来源: 网友投递
libmill C 并发编程库
libmill 是一个 Go 语言风格的 C 并发编程库。每秒可实现 2000 - 5000 万的协程上下文切换。
libmill 1.2 发布,此版本最重要的是在成千上万的大量连接场景中,速度快 1700 倍!
性能的大幅度提升主要是因为使用现代的轮询机制 (epoll or kqueue, respectively) 代替了之前的 fashioned poll(2)。
Epoll 是在 Linux,kqueue 是 BSD 变体和 OSX,其他系统实现还是使用 poll(2)。
下载:
SHA1 checksum: 3074a5feb20090941f2166b62d26bb73e302d785
同时发布了 libmill 1.4.38,主要改进:
mod_secdownload now requires an algorithm option to be set
fix a header parse bug (#2670)
sendfile support for darwin (just select “sendfile” as backend)
下载:
lighttpd-1.4.38.tar.gz (GPG signature)
SHA256: eb3c689f83ee3545dc688d99e36011b28145a1727bb6d17c94c5ed6684edcdd1
lighttpd-1.4.38.tar.xz (GPG signature)
SHA256: 4912568b7befcf3f552ca4668bd7f38cd85f42a22944359d00816ec27eb1e504
libmill 是一个 Go 语言风格的 C 并发编程库。每秒可实现 2000 - 5000 万的协程上下文切换。