# -*- coding:utf-8 -*-
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.webweb
import tornado.gen
from tornado.concurrent import run_on_executor
from concurrent.futures import ThreadPoolExecutor
import time
from tornado.options import define, options
define("port", default=8000, help="run on the given port", type=int)app
class SleepHandler(tornado.web.RequestHandler):
executor = ThreadPoolExecutor(200)異步
@tornado.web.asynchronous
@tornado.gen.coroutine
def get(self):
# 假如你執行的異步會返回值被繼續調用能夠這樣(只是爲了演示),不然直接yield就行
print 'a'
res = yield self.sleep()
self.write("when i sleep %s s" % res)
print 'b'
self.finish()async
@run_on_executor
def sleep(self):
time.sleep(5)
return 5tornado
class JustNowHandler(tornado.web.RequestHandler):
def get(self):
self.write("i hope just now see you")oop
if __name__ == "__main__":
tornado.options.parse_command_line()
app = tornado.web.Application(handlers=[
(r"/sleep", SleepHandler), (r"/justnow", JustNowHandler)])
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
server