⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 speed

📁 文件传输协议linux 下vsftpd2.1.0.tar.gz
💻
字号:
- See also BENCHMARKSThis FTPd should be very performant. The reasons for this are below, followedby specific benchmarks as and when I get them.1) Generally, it is a fairly minimal FTPd. There should not be much code and/orsyscall bloat.2) For binary downloads, Linux sendfile() is used. This is a lot lighter onCPU/syscall usage than your regular read()/write() loop.3) The "ls" command is fully internal. That is to say, an external "ls" commanddoes not need to be launch. Launching an external process is costly becauseof the fork(), exec(), ELF loader startup, etc.It is not all good news, of course. Potential sources of poor performanceinclude1) Overhead of two processes per session (in some common configurations).2) Excessive heap usage hidden behind the string API.BENCHMARKS==========1) vsftpd downloads ASCII data at at least twice the rate of wu-ftpd.2) vsftpd has achieved 86Mbyte/sec download over Gigabit ethernet betweenLinux-2.4.x boxes (thanks to sendfile())3) vsftpd has smaller virtual memory usage (and RSS, it seems)4) Various reports have trickled in and indicate that vsftpd thumps wu-ftpdin performance tests.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -