
GitHub - libuv/libuv: Cross-platform asynchronous I/O
Starting with version 1.0.0 libuv follows the semantic versioning scheme. The API change and backwards compatibility rules are those indicated by SemVer. libuv will keep a stable ABI across major releases. The ABI/API changes can be tracked here.
欢迎来到libuv中文文档 — libuv documentation - Read the Docs
libuv是一个强调异步I/O的多平台支持库。 开发它 主要是用于 Node.js ,但它也被用在 Luvit 、 Julia 、 pyuv 和 其他项目 。 注解
libuv | Cross-platform asynchronous I/O
libuv is a multi-platform support library with a focus on asynchronous I/O. Show me the code!
网络I/O库总结(libevent,libuv,libev,libeio) - 知乎专栏
libuv是一个跨平台(window,linux,macOS)、高性能,事件驱动的异步I/O库。 它本身是由C语言编写的,封装了不同平台底层对于高性能IO模型的实现(epoll【Linux】,kqueue【macOS、BSD等】,IOCP【windows】,event ports【SUNOS系列】),具有很高的可移植性。
【libuv高效编程】libuv学习超详细教程1——libuv的编译与安装_libuv …
2020年4月17日 · libuv介绍一、简介 1.开源跨平台的异步IO库(网络异步、文件异步等),它是node.js的底层库。 2.官方网站:http://libuv.org。 3.事件循环模型:IOCP、epoll、kqueue、event ports。
libuv - Wikipedia
libuv is a multi-platform C library that provides support for asynchronous I/O based on event loops. It supports epoll(4), kqueue(2), Windows IOCP, Solaris event ports and Linux io_uring. It is primarily designed for use in Node.js but it is also used by other software projects. [3]
libuv documentation
libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js , but it’s also used by Luvit , Julia , uvloop , and others . Note
简介 | libuv中文教程 - GitHub Pages
本书由很多的libuv教程组成,libuv是一个高性能的,事件驱动的I/O库,并且提供了跨平台(如windows, linux)的API。 本书会涵盖libuv的主要部分,但是不会详细地讲解每一个函数和数据结构。
libuv - 维基百科,自由的百科全书
libuv(Unicorn Velociraptor—独角伶盗龙 [3] )库是多平台C库,提供对基于事件循环的异步I/O的支持。它支持epoll(4)、kqueue(2)、Windows的IOCP和Solaris的事件端口。它主要设计用于Node.js,但也可用于其他软件项目,例如Lua的Luvit [4] 、Julia和Python的uvloop [5] 。
理解libuv的基本原理 - 知乎 - 知乎专栏
libuv的实现是一个很经典生产者-消费者模型。 libuv在整个生命周期中,每一次循环都执行每个阶段(phase)维护的任务队列。 逐个执行节点里的回调,在回调中,不断生产新的任务,从而不断驱动libuv。
- 某些结果已被删除