Skip to content

Instantly share code, notes, and snippets.

@zs1621
Forked from dongchao-cn/run_on_executor.py
Last active December 31, 2015 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zs1621/7921770 to your computer and use it in GitHub Desktop.
Save zs1621/7921770 to your computer and use it in GitHub Desktop.
#!/bin/env python
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
import tornado.httpclient
import tornado.gen
from tornado.concurrent import run_on_executor
#if < python3.2 you need do `sudo pip install futures`
from concurrent.futures import ThreadPoolExecutor
import time
from tornado.options import define, options
define("port", default=7000, help="run on the given port", type=int)
class SleepHandler(tornado.web.RequestHandler):
executor = ThreadPoolExecutor(10)
#@tornado.web.asynchronous
@tornado.gen.coroutine
def get(self):
start = time.time()
res = yield self.sleep()
self.write("when i sleep %f s" % (time.time() - start))
self.finish()
@run_on_executor
def sleep(self):
time.sleep(5)
return 5
class JustNowHandler(tornado.web.RequestHandler):
def get(self):
self.write("i hope just now see you")
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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment