Tornado线程池在python2.7的使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tornado线程池在python2.7的使用相关的知识,希望对你有一定的参考价值。

# pip install futures

# coding=utf-8
import requests
from tornado.concurrent import run_on_executor
from concurrent.futures import ThreadPoolExecutor

executor = ThreadPoolExecutor(20)

@run_on_executor
def test():
    url = http://www.baidu.com
    r = requests.get(url)

 

以上是关于Tornado线程池在python2.7的使用的主要内容,如果未能解决你的问题,请参考以下文章

tornado 使用入门

在 ubuntu 中安装 python3.5 tornado pymysql

在 ubuntu 中安装 python3.5 tornado pymysql

在 ubuntu 中安装 python3.5 tornado pymysql

tornado 启动WSGI应用(Flask)使用多线程将同步代码变成异步

Tornado 基础安装及启动