标签:.net 描述 直接 ice details 循环 detail send linux
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
标签:.net 描述 直接 ice details 循环 detail send linux
原文地址:https://www.cnblogs.com/Mered1th/p/10859396.html