This is a discussion on Article: Using epoll() For Asynchronous Network Programming within the Linux Networking forums, part of the Linux Forums category; Hello, all! Let me introduce my article about using epoll() on Linux. General way to implement tcp servers is "...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello, all!
Let me introduce my article about using epoll() on Linux. General way to implement tcp servers is "one thread/process per connection". But on high loads this approach can be not so efficient and we need to use another patterns of connection handling. In this article I will describe how to implement tcp-server with synchronous connections handling using epoll() system call of Linux 2.6. kernel. If You want to read article, welcome to: http://blog.kovyrin.net/2006/04/13/e...k-programming/ -- /Scoundrel [http://kovyrin.info] |
|
|||
|
Alexey N. Kovyrin wrote:
> General way to implement tcp servers is "one thread/process per > connection". But on high loads this approach can be not so efficient and > we need to use another patterns of connection handling. In this article > I will describe how to implement tcp-server with synchronous connections > handling using epoll() system call of Linux 2.6. kernel. > > If You want to read article, welcome to: > http://blog.kovyrin.net/2006/04/13/e...k-programming/ Has it been not discussed in details at http://www.kegel.com/c10k.html ? |