1. 程式人生 > >Tornado——異步,websocket

Tornado——異步,websocket

light post web 處理請求 tornado time sock 完成 div

同步

# coding:utf-8
import time

def req_a():
    """模擬請求a"""
    print(‘開始處理請求req_a‘)
    time.sleep(2)
    print(‘完成處理請求req_a‘)

def req_b():
    """模擬請求b"""
    print(‘開始處理請求req_b‘)
    print(‘完成處理請求req_b‘)

def main():
    """模擬tornado框架,處理兩個請求"""
    req_a()
    req_b()

if __name__ == "__main__":
    main()

  

Tornado——異步,websocket