博客
关于我
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 时间操作(当天,昨天,7天,30天,半年,全年,季度)
查看>>
MySQL 是如何加锁的?
查看>>
MySQL 是怎样运行的 - InnoDB数据页结构
查看>>
mysql 更新子表_mysql 在update中实现子查询的方式
查看>>
MySQL 有什么优点?
查看>>
mysql 权限整理记录
查看>>
mysql 权限登录问题:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
查看>>
MYSQL 查看最大连接数和修改最大连接数
查看>>
MySQL 查看有哪些表
查看>>
mysql 查看锁_阿里/美团/字节面试官必问的Mysql锁机制,你真的明白吗
查看>>
MySql 查询以逗号分隔的字符串的方法(正则)
查看>>
MySQL 查询优化:提速查询效率的13大秘籍(避免使用SELECT 、分页查询的优化、合理使用连接、子查询的优化)(上)
查看>>
mysql 查询数据库所有表的字段信息
查看>>
【Java基础】什么是面向对象?
查看>>
mysql 查询,正数降序排序,负数升序排序
查看>>