タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

pythonとperformanceとserverに関するmasterqのブックマーク (1)

  • Tornado Web Server — Tornado 6.5.1 documentation

    ¶ Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user. Quick links¶ Current version: 6.5.1 (download from PyPI, release notes) Sour

    masterq
    masterq 2009/09/12
    epollを使っているそうです。 Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed. it is non-blocking and uses epoll, it can handle thousands of simultaneous standing connections, which means it is ideal for real-time web services.
  • 1