Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP的KeepAlive是开启还是关闭? #197

Open
TieMuZhen opened this issue May 9, 2022 · 0 comments
Open

HTTP的KeepAlive是开启还是关闭? #197

TieMuZhen opened this issue May 9, 2022 · 0 comments

Comments

@TieMuZhen
Copy link
Owner

一、KeepAlive的概念与优势

HTTP的KeepAlive就是浏览器和服务端之间保持长连接,这个连接是可以复用的。当客户端发送一次请求,收到相应内容后,这个连接会保持一段时间,在该时间内的第二次就不需要再重新建立连接,就可以直接使用这次的连接来发送请求了,极大的提高了速度。

二、KeepAlive的劣势

是不是所有网站都应该开启KeepAlive了?答案肯定是不是的。KeepAlive在增加访问效率的同时,也会增加服务器的压力

三、apache配置KeepAlive

apache通过配置KeepAliveKeepAliveTimeout来控制KeepAlive,具体参数如下:

  • KeepAlive On/Off (可以设置开启On或者是关闭Off)
  • KeepAliveTimeout 10 (持久连接保持的时间,到时间会断开链接)

四、案例说明(来源互联网)

假设 KeepAlive 的超时时间为 10 秒种,服务器每秒处理 50 个独立用户访问,那么系统中Apache的总进程数就是 10 * 50 = 500 个,如果一个进程占用 4M 内存,那么总共会消耗2G内存,所以可以看出,在这种配置中,相当消耗内存,但好处是系统只处理了 50次 TCP 的握手和关闭操作。

如果关闭 KeepAlive,如果还是每秒50个用户访问,如果用户每次连续的请求数为3个,那么 Apache 的总进程数就是 50 * 3 = 150 个,如果还是每个进程占用 4M 内存,那么总的内存消耗为600M,这种配置能节省大量内存,但是,系统处理了 150 次 TCP 的握手和关闭的操作,因此又会多消耗一些 CPU 资源。

五、总结

(1)如果内存和CPU都足够,开启和关闭KeepAlive对性能影响不大。
(2)如果考虑服务器压力,如果是静态页面,大量的调用js或者图片的话,建议开启KeepAlive;如果是动态网页,建议关闭KeepAlive

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant