Iam designing a new server which needs to support thousands( somewhere between 100,000 sessions) of udp connections. What is the best polling method to use for socket FD's. I have read that epoll is better than select/poll. Any input or suggestions on which one to use. Thanks.
|
closed as not constructive by casperOne♦ Apr 27 '12 at 20:47
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You probably shouldn't be designing a server to support 100,000 simultaneous users unless you really know what you are doing. The fact that you referred to "udp connections" (There's no such thing!) and don't have any pre-existing knowledge about epoll imply that this task is a little bit beyond your current skill level. I highly recommend working on a smaller project to get used to everything you'll be using in the main project or you'll likely find yourself wanting to redesign the core parts to it at least once However, all criticism aside, the answer is epoll if you're using Linux, kqueue if you're using FreeBSD or Mac OS X, and i/o completion ports if you're on Windows. Some additional things you'll (almost certainly) want to research are:
I hope my response was helpful |
|||||||||
|
|
The author of CURL wrote an amazing article on poll vs select vs event libraries. |
|||
|
|
|
Linux: There are wrapper libraries, such as libevent and libev, which can abstract this for you. |
|||||||||||||||
|