python tornado异步_python tornado异步处理记录

单进程单线程。

import tornado.ioloop

import tornado.web

class MainHandler(tornado.web.RequestHandler):

def get(self):

time.sleep(10)

return "ok"

application = tornado.web.Application([

(r"/", MainHandler),

])

if __name__ == "__main__":

application.listen(58000)

tornado.ioloop.IOLoop.instance().start()

异步写法

#!/bin/env python

# -*- coding:utf-8 -*-

# Date: 2017-01-02

# Author: simonzhang

# web: www.simonzhang.net

# Email: simon-zzm@163.com

## END INIT INFO

import tornado.ioloop

import tornado.web

import tornado.gen

from tornado.concurrent import run_on_executor

# 这个并发库在python3自带;在python2需要安装pip install futures

from concurrent.futures import ThreadPoolExecutor

import time

class MainHandler(tornado.web.RequestHandler):

#executor 是局部变量 不是全局的

executor = ThreadPoolExecutor(5)

@tornado.web.asynchronous

@tornado.gen.coroutine

def get(self):

res = yield self.sleep()

self.write("wait. %s" % res)

# 必须要结束

self.finish()

@run_on_executor

def sleep(self):

time.sleep(10)

return "ok"

application = tornado.web.Application([

(r"/", MainHandler),

])

if __name__ == "__main__":

application.listen(58000)

tornado.ioloop.IOLoop.instance().start()

来源:http://www.dongwm.com/archives/shi-yong-tornadorang-ni-de-qing-qiu-yi-bu-fei-zu-sai/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值