TUNING
上传用户:ig0539
上传日期:2022-05-21
资源大小:181k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

C/C++

  1. So, you want vsftpd to go quickly?
  2. Here are some random assorted performance tips.
  3. 1) vsftpd thrives because of its lightweight RSS and vm usage. If you run
  4. a glibc based system (e.g. RedHat 5+), look in /etc/nsswitch.conf, and
  5. if possible, disable the "nis" and "nisplus" options for "passwd", "shadow"
  6. and "group". This prevents unneeded runtime libraries being added into
  7. the vsftpd virtual memory space.
  8. 2) vsftpd will attempt to save CPU power by using sendfile() on capable
  9. operating systems. Currently, Linux 2.2+ and FreeBSD 3.0+ use sendfile().
  10. Consider running on these excellent operating systems.
  11. 3) Irritated by vsftpd using _two_ processes per connection? Don't be, it's
  12. a very secure architecture. However, if you run Linux 2.4+, or Linux 2.2.19+, a
  13. "one process" security model is possible thanks to nifty security features.
  14. See the vsftpd.conf man page.
  15. 4) Avoid large directories (e.g. thousands of entries) if possible. Many
  16. filesystems do not handle such cases efficiently at all. Preparing large
  17. directory listings will require vsftpd to use moderate amounts of memory
  18. and CPU. If you _must_ have large directories, consider either making them
  19. unreadable, or use a filesystem which copes well with large directories such
  20. as reiserfs.