Linux网络编程——sendfile和splice零拷贝

Posted mered1th

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux网络编程——sendfile和splice零拷贝相关的知识,希望对你有一定的参考价值。

sendfile和splice零拷贝

sendfile:

? 原始:首先将文件读到内核态的文件描述符中,然后再拷贝给用户态buf,再重新拷贝给内核态中网络缓冲区发给客户端。拷贝2次

? sendfile是一个接口能直接让文件从内核态的文件描述符送到网络缓冲区从而实现零拷贝

? 函数原型:ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);

? out_fd为文件描述符,in_fd为网络缓冲区描述符,offset偏移量(默认NULL),count文件大小

直接发整个文件,不需要循环发送。返回值为传输的文件大小,传输成功则返回值与count相等

splice:

? 在内核态中建立了一个管道,先将文件读入到文件描述符,然后写入管道,管道再读入到内核态中网络缓冲区。

? 和sendfile的区别是,在内核态中间过程又加入了管道当做中间媒介。

函数原型:ssize_t splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags);

? loff_t *off_out, size_t len, unsigned int flags);

参考:

浅析Linux中的零拷贝技术 https://www.jianshu.com/p/fad3339e3448

linux网络编程九:splice函数,高效的零拷贝 https://blog.csdn.net/jasonliuvip/article/details/22600569

以上是关于Linux网络编程——sendfile和splice零拷贝的主要内容,如果未能解决你的问题,请参考以下文章

nginx (linux)sendfile 参数解释

e.Tomcat中的sendfile支持

e.Tomcat中的sendfile支持

e.Tomcat中的sendfile支持

linux手册翻译——sendfile(2)

Linux Sendfile 的优势