WinAPI::InternetCheckConnection 是否会给服务器带来负载?
我们的程序每2秒调用一次InternetCheckConnection来测试程序是否连接到我们的服务器。
我们有大约 4000 个客户在运行我们的计划。 现在,尽管处理器几乎空闲并且可用内存足够高,但服务器响应速度很慢。 InternetCheckConnection 是否可能会给我们的服务器带来负载,从而减慢速度?
我也很高兴了解 InternetCheckConnection 实现的详细信息。 MSDN 没有说太多。
Our program calls InternetCheckConnection every 2 seconds to test whether the program is connected to our server.
We have around 4000 clients running our program.
Now the server response is slow, despite its processor is almost idle and the free memory is high enough.
Is it possible that InternetCheckConnection puts a load on our server slowing it down?
I also would be happy to know the details of InternetCheckConnection implementation.
MSDN does not tell much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢,我最终在另一个 MSDN 页面上找到了答案。
InternetCheckConnection 对服务器执行 ping 操作。
http://msdn.microsoft.com/en-我们/库/aa383996%28VS.85%29.aspx
Thanks, I have eventually found the answer on another MSDN page.
InternetCheckConnection pings the server.
http://msdn.microsoft.com/en-us/library/aa383996%28VS.85%29.aspx