Are there any good open-sourced comet web servers for ASP.NET MVC applications?

余生颓废 提交于 2019-12-08 01:06:05

问题


I'm looking for one that can be used to handle many long poll clients and does not create a thread for each request.


回答1:


Each call to IIS (ASP.NET) page works on its own thread. A good library should not create some extra threads. So, I'm using PokeIn inside my solution(online learning) and it doesnt create extra threads. It has a free community edition but not an open source :(




回答2:


you can check the source code for Pokein here

edit
It seems that the latest source available isn't that up to date, my bad. Check out their website instead.
I've been using it



来源:https://stackoverflow.com/questions/2322196/are-there-any-good-open-sourced-comet-web-servers-for-asp-net-mvc-applications

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