博客
关于我
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/

你可能感兴趣的文章
Mysql-事务阻塞
查看>>
Mysql-存储引擎
查看>>
mysql-开启慢查询&所有操作记录日志
查看>>
MySQL-数据目录
查看>>
MySQL-数据页的结构
查看>>
MySQL-架构篇
查看>>
MySQL-索引的分类(聚簇索引、二级索引、联合索引)
查看>>
Mysql-触发器及创建触发器失败原因
查看>>
MySQL-连接
查看>>
mysql-递归查询(二)
查看>>
MySQL5.1安装
查看>>
mysql5.5和5.6版本间的坑
查看>>
mysql5.5最简安装教程
查看>>
mysql5.6 TIME,DATETIME,TIMESTAMP
查看>>
mysql5.6.21重置数据库的root密码
查看>>
Mysql5.6主从复制-基于binlog
查看>>
MySQL5.6忘记root密码(win平台)
查看>>
MySQL5.6的Linux安装shell脚本之二进制安装(一)
查看>>
MySQL5.6的zip包安装教程
查看>>
mysql5.7 for windows_MySQL 5.7 for Windows 解压缩版配置安装
查看>>