问题 如何在tornado的coroutine中调用同步阻塞的函数 解决方案 使用python内置标准库的concurrent.futures.ThreadPoolExecutor和tornado.concurrent.run_on_executor 解决示例 a.使用concurrent.futures.ThreadPoolExecutor #-*-coding:utf-8-*- import time from tornado.gen import coroutine from tornad…