搜尋

首頁  >  問答  >  主體

Python tornado, 在Linux下, 是实现了Epoll模型, 还是会使用Linux的Epoll ?

实际现象

预期现象

上下文环境

PHPzPHPz2778 天前770

全部回覆(1)我來回復

  • 天蓬老师

    天蓬老师2017-04-18 10:25:12

    可以去看tornadoioloop模組。裡面有說明

    ...
    class IOLoop(Configurable):
        """A level-triggered I/O loop.
        We use `epoll` (Linux) or `kqueue` (BSD and Mac OS X) if they
        are available, or else we fall back on select(). If you are
        implementing a system that needs to handle thousands of
        simultaneous connections, you should use a system that supports
        either `epoll` or `kqueue`.
    ...

    Linux系统中用epoll,BSDMac OS Xkqueue,其他系统中用select

    使用的是python标准库中的select模块。实际上select模块也只是对系统的select的調用,並沒有自己實現。

    想深入研究的話可以看源碼


    感謝 @依雲 的補充。
    python标准库中的select模块是对系统各种I/O復用方案的封裝。

    >>> import platform
    >>> platform.linux_distribution()
    ('Red Hat Enterprise Linux Server', '6.5', 'Santiago')
    >>> import select
    >>> dir(select)
    ['EPOLLERR', 'EPOLLET', 'EPOLLHUP', 'EPOLLIN', 'EPOLLMSG', 'EPOLLONESHOT', 'EPOLLOUT',         
    'EPOLLPRI', 'EPOLLRDBAND', 'EPOLLRDNORM', 'EPOLLWRBAND', 'EPOLLWRNORM', 'PIPE_BUF', 
    'POLLERR', 'POLLHUP', 'POLLIN', 'POLLMSG', 'POLLNVAL', 'POLLOUT', 'POLLPRI', 'POLLRDBAND', 
    'POLLRDNORM', 'POLLWRBAND', 'POLLWRNORM', '__doc__', '__file__', '__name__', 
    '__package__', 'epoll', 'error', 'poll', 'select']
    

    回覆
    0
  • 取消回覆