How to handle up to 100k HTTP connections in .Net

断了今生、忘了曾经 提交于 2019-11-30 19:54:16
Nicolas Repiquet

100 000 persistent connections is not a viable option.

Sending HTTP requests at interval is way more feasible, and writing a dedicated HTTP server is an interesting choice IMO.

Take a look at this question for some orientations.

I know you specifically say .NET, but you should probably take a look at NodeJS, as it does exactly what you're trying to do, but it is server-side JavaScript.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!