tornado--同步异步
同步:指两个或两个以上随时间变化的量在变化过程中保持一定的相对关系 现象:有一个共同的时钟,按来的顺序一个一个处理
异步:双方不需要共同的时钟,也就是接收方不知道发送方什么时候发送,所以在发送的信息中就要有提示接收方开始接收的信息,如开始位,同时在结束时有停止位 现象:没有共同的时钟,不考虑顺序来了就处理
四种异步:
import tornado.ioloop
import tornado.web from data.table_1 import User
from tornado.web import authenticated from pycket.session import SessionMixin import tornado.websocket
from datetime import datetime
import time import tornado.options
import tornado.httpserver
from tornado.options import define, options define('port',default=8000, help='run port', type=int)
define('version', default=0.1, help='version', type=str) class BaseHandler(tornado.web.RequestHandler, SessionMixin):
def get_current_user(self):
# current_user = self.get_secure_cookie('ID')
current_user = self.session.get('ID')
if current_user:
return current_user
return None class AbcHandler(BaseHandler):
def get(self):
self.write('abc') import tornado.httpclient
class SyncHandler(BaseHandler):
def get(self):
client = tornado.httpclient.HTTPClient() # 同步HTTPClient
response = client.fetch('http://127.0.0.1:8000/sync') # 8000已经启动,去访问sync(相当于调用接口)
print(response)
self.write('----SyncHandler---') # 可能发生阻塞用异步
class CallbackHandler(BaseHandler):
""" 1.通过回调函数实现异步 """
@tornado.web.asynchronous # 将请求变成长连接
def get(self):
client = tornado.httpclient.AsyncHTTPClient() # 异步AsyncHTTPClient
# 阻塞完毕后调用 callback
response = client.fetch('http://127.0.0.1:8000/sync', callback=self.on_response)
print(response)
self.write('OK'+'<br>') def on_response(self, response):
print(response)
self.write('----CallbackSyncHandler---')
self.finish() # 回调结束,请求结束,响应到浏览器(否则浏览器一直等待状态) import tornado.gen
class GenHandler(BaseHandler):
""" 2.通过协程实现异步 yield """
@tornado.web.asynchronous
@tornado.gen.coroutine
def get(self):
client = tornado.httpclient.AsyncHTTPClient() # 异步
# 节省内存(暂停)
response = yield tornado.gen.Task(client.fetch,'http://127.0.0.1:8000/sync')
print(response)
self.write('---gen----') class FuncHandler(BaseHandler):
""" 3.通过协程实现异步 yield 调用函数 @tornado.gen.coroutine装饰函数(函数需要用到yield)"""
@tornado.web.asynchronous
@tornado.gen.coroutine
def get(self):
response = yield self.fun()
print(response)
self.write('---gen----') @tornado.gen.coroutine
def fun(self):
client = tornado.httpclient.AsyncHTTPClient() # 异步
response = yield tornado.gen.Task(client.fetch, 'http://127.0.0.1:8000/sync')
raise tornado.gen.Return(response) from tornado.concurrent import run_on_executor
from concurrent.futures import ThreadPoolExecutor # (它是由thread模块封装的(创建线程的模块))
import requests class ExeHandler(BaseHandler):
""" 4.通过协程实现异步 yield 调用函数 @run_on_executor装饰函数(函数不用yield)
需要下载requests 和futures"""
executor = ThreadPoolExecutor() # 当发生阻塞时,能够创建一个新的线程来执行阻塞的任务(多线程)
@tornado.web.asynchronous
@tornado.gen.coroutine
def get(self):
response = yield self.fun()
print(response)
self.write('---exe----') @run_on_executor
def fun(self):
response = requests.get( 'http://127.0.0.1:8000/sync')
return response application = tornado.web.Application(
handlers=[
(r"/sync", SyncHandler),
(r"/abc", AbcHandler),
(r"/callback", CallbackHandler),
(r"/gen", GenHandler),
(r"/func", FuncHandler),
(r"/exe", ExeHandler),
],
cookie_secret='haha',
debug=True
) if __name__ == '__main__':
tornado.options.parse_command_line() # 获取命令行的参数 --port=1040 就能使用这个参数
print(options.port)
print(options.version) http_server = tornado.httpserver.HTTPServer(application)
application.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
tornado--同步异步的更多相关文章
- 【测试】Gunicorn , uWSGI同步异步测试以及应用场景总结
最近使用uwsgi出了一些问题,于是测试下Gunicorn测试对比下 环境 一颗cpu 1g内存 Centos系统 Django作为后端应用,Gunicorn默认模式和异步模式,响应基本是无阻塞类型 ...
- 深入理解yield(三):yield与基于Tornado的异步回调
转自:http://beginman.cn/python/2015/04/06/yield-via-Tornado/ 作者:BeginMan 版权声明:本文版权归作者所有,欢迎转载,但未经作者同意必须 ...
- tornado 之 异步非阻塞
异步非阻塞 1.基本使用 装饰器 + Future 从而实现Tornado的异步非阻塞 import tornado.web import tornado.ioloop from tornado im ...
- tornado 11 异步编程
tornado 11 异步编程 一.同步与异步 同步 #含义:指两个或两个以上随时间变化的量在变化过程中保持一定的相对关系 #现象:有一个共同的时钟,按来的顺序一个一个处理 #直观感受:需要等待,效率 ...
- Python核心框架tornado的异步协程的2种方式
什么是异步? 含义 :双方不需要共同的时钟,也就是接收方不知道发送方什么时候发送,所以在发送的信息中就要有提示接收方开始接收的信息,如开始位,同时在结束时有停止位 现象:没有共同的时钟,不考虑顺序来了 ...
- Tornado中异步框架的使用
tornado的同步框架与其他web框架相同都是处理先来的请求,如果先来的请求阻塞,那么后面的请求也会处理不了.一直处于等待过程中.但是请求一旦得到响应,那么: 请求发送过来后,将需要的本站资源直接返 ...
- Tornado之异步非阻塞
同步模式:同步模式下,只有处理完前一个任务下一个才会执行 class MainHandler(tornado.web.RequestHandler): def get(self): time.slee ...
- .Net Core WebAPI 基于Task的同步&异步编程快速入门
.Net Core WebAPI 基于Task的同步&异步编程快速入门 Task.Result async & await 总结 并行任务(Task)以及基于Task的异步编程(asy ...
- AJAX请求详解 同步异步 GET和POST
AJAX请求详解 同步异步 GET和POST 上一篇博文(http://www.cnblogs.com/mengdd/p/4191941.html)介绍了AJAX的概念和基本使用,附有一个小例子,下面 ...
- 同步异步,阻塞非阻塞 和nginx的IO模型
同步与异步 同步和异步关注的是消息通信机制 (synchronous communication/ asynchronous communication).所谓同步,就是在发出一个*调用*时,在没有得 ...
随机推荐
- 牛客练习赛14A(唯一分解定理)
https://www.nowcoder.com/acm/contest/82/A 首先这道题是求1~n的最大约数个数的,首先想到使用唯一分解定理,约数个数=(1+e1)*(1+e2)..(1+en) ...
- day32 多进程
一 multiprocessing模块介绍 python中的多线程无法利用多核优势,如果想要充分地使用多核CPU的资源(os.cpu_count()查看),在python中大部分情况需要使用多进程. ...
- harbor helm 仓库使用
harbor 已经支持helm 私服仓库了,还是比较方便的 安装 下载在线安装包 wget https://storage.googleapis.com/harbor-releases/release ...
- dgraph 数据加载
dgraph 可以方便的进行大量的数据加载 下载rdf 文件 wget "https://github.com/dgraph-io/tutorial/blob/master/resource ...
- 测试开发系列之Python开发mock接口(一)
什么是mock接口呢,举个栗子,你在一家电商公司,有查看商品.购物.支付.发 货.收获等等等一大堆功能,你是一个测试人员,测测测,测到支付功能的时候,你就要调用第三方支付接口了,真实支付,直接扣你支付 ...
- 【转】每天一个linux命令(35):ln 命令
原文网址:http://www.cnblogs.com/peida/archive/2012/12/11/2812294.html ln是linux中又一个非常重要命令,它的功能是为某一个文件在另外一 ...
- hadoop 安装、命令
hadoop安装步骤: 安装java 安装hadoop 下载地址:http://apache.claz.org/hadoop/common/ (说明:该网址current文件夹下,是最新版) hado ...
- yarn 知识点
yarn 与 npm 功能对应表格: 命令 yarn npm 初始化 yarn init npm init 安装项目所有包(注意) yarn npm install 添加 dependencies y ...
- Jenkins进阶-Gitlab使用Webhook实现Push代码自动部署(3)
1.Jenkins 安装完成以后,首先我们在Jenkins中需要安装一下,Gitlab Hook Plugin 插件: 2.插件安装完成我们创建任务,在任务重构建触发器下获取回调URL: 注意: 注意 ...
- Microsoft.Crm.Setup.SrsDataConector.RegisterServerAction 操作失败 Requested value 'Geo' was not found 的解决方法
error installing ssrs data connector on sql server for dynamics crm 2011 I think the post title says ...