博客
关于我
tornaodo异步编程
阅读量:107 次
发布时间:2019-02-26

本文共 3911 字,大约阅读时间需要 13 分钟。

一、书写一个休眠5秒的视图

#coding=utf-8import timeimport tornado.httpserverimport tornado.webimport tornado.ioloopfrom tornado.options import define, options#定义一个默认的端口define("port", default=4000, help="run port ", type=int)class IndexHandler(tornado.web.RequestHandler):    def get(self):        #设置休眠时间        time.sleep(5)        self.write("我是休眠的")if __name__ == "__main__":    options.parse_command_line()    app = tornado.web.Application(        handlers=[            (r'/', IndexHandler)        ],        template_path='templates',        static_path='static',        debug=True    )    http_server = tornado.httpserver.HTTPServer(app)    http_server.listen(options.port)    print 'start server...'    tornado.ioloop.IOLoop.instance().start()

二、使用回调函数实现异步编程

  • 1、导包import tornado.httpclient
  • 2、书写一个正常的视图
  • 3、在get或post方法里 实例化异步客户端

    client = tornado.httpclient.AsyncHTTPClient()
  • 4、通过异步客户端的fetch方法请求一个耗时的网络接口,并传入callback回调函数

  • 5、编写回调函数,主要要带self.finish()
  • 6、给异步的方法加上装饰器@tornado.web.asynchronous

    #coding=utf-8import timeimport tornado.httpclientimport tornado.httpserverimport tornado.webimport tornado.ioloopfrom tornado.options import define, options#定义一个默认的端口define("port", default=8000, help="run port ", type=int)#使用回调函数实现异步编程class IndexHandler(tornado.web.RequestHandler):    @tornado.web.asynchronous    def get(self):        client = tornado.httpclient.AsyncHTTPClient()        client.fetch("http://xx.xx.xx.xxx:4000",callback=self.on_response)        self.write("我是主页")    def on_response(self,response):        print response        self.write(response.body)        self.finish()if __name__ == "__main__":    options.parse_command_line()    app = tornado.web.Application(        handlers=[            (r'/', IndexHandler)        ],        template_path='templates',        static_path='static1',        debug=True    )    http_server = tornado.httpserver.HTTPServer(app)    http_server.listen(options.port)    print 'start server...'    tornado.ioloop.IOLoop.instance().start()

三、通过协程实现的异步

  • 1、导包

    import tornado.genimport tornado.httpclient
  • 2、书写路由视图函数

  • 3、在getpost方法里 实例化异步客户端

    client = tornado.httpclient.AsyncHTTPClient()
  • 4、使用yield返回一个任务,需要传入异步客户端fetch方法,和耗时的url作为参数

    response  = yield tornado.gen.Task(client.fetch, "http://xx.xx.xx.xxx:8000/sync?id=2")
  • 5、处理通过yield返回的结果response
  • 6、给getpost方法添加两个装饰器

    @tornado.web.asynchronous@tornado.gen.coroutine
  • 7、具体视图代码

    #使用协程实现异步编程class IndexHandler(tornado.web.RequestHandler):    @tornado.web.asynchronous    @tornado.gen.coroutine    def get(self):        client = tornado.httpclient.AsyncHTTPClient()        response = yield tornado.gen.Task(client.fetch,"http://xx.xx.xx.xxx:4000")        self.write("我是主页")        self.write(response.body)

四、协程实现的异步,返回的是自定义的函数

  • 1、导包

    import tornado.genimport tornado.httpclient
  • 2、书写路由视图函数

  • 3、通过yield关键字返回我们自定义的函数
  • 4、处理yield返回的结果response

    self.write(response.body)
  • 5、书写自定义函数

    • 1、在函数中实例化异步客户端

      client = tornado.httpclient.AsyncHTTPClient()
    • 2、使用yield返回一个任务,需要传入异步客户端fetch方法,和耗时的url作为参数

      response  = yield tornado.gen.Task(client.fetch, "http://xx.xx.xx.xxx:4000")
    • 3、处理通过raise返回的结果

      raise tornado.gen.Return(response)
    • 4、在自定义函数上加装饰符

      @tornado.gen.coroutine
  • 6、具体代码

    class IndexHandler(tornado.web.RequestHandler):    @tornado.web.asynchronous    @tornado.gen.coroutine    def get(self):        response = yield self.myfunc()        self.write(response.body)    @tornado.gen.coroutine    def myfunc(self):        client = tornado.httpclient.AsyncHTTPClient()        response = yield tornado.gen.Task(client.fetch,"http://xx.xx.xx.xxx:4000/")        raise tornado.gen.Return(response)

五、异步线程实现的异步,返回的是自定义的函数

  • 1、在虚拟环境下安装模块

    pip install futures
  • 2、导入模块

    from tornado.concurrent import run_on_executorfrom concurrent.futures import ThreadPoolExecutorimport tornado.gen
  • 3、书写视图函数

  • 4、通过yield关键字返回我们自定义的函数

    response = yield self.myfunc()
  • 5、处理yield返回的结果response

    self.write(response.body)
  • 6、书写自定义函数myfunc

    • 1、在函数中使用requests模块发送get请求

      response = requests.get("http://xx.xx.xx.xxx:4000")

转载地址:http://ntvf.baihongyu.com/

你可能感兴趣的文章
mysql5.7.19安装图解_mysql5.7.19 winx64解压缩版安装配置教程
查看>>
MySQL5.7.37windows解压版的安装使用
查看>>
mysql5.7免费下载地址
查看>>
mysql5.7命令总结
查看>>
mysql5.7安装
查看>>
mysql5.7性能调优my.ini
查看>>
MySQL5.7新增Performance Schema表
查看>>
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Webpack 之 basic chunk graph
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>