首页 > 编程 > Python > 正文

深入flask之异步非堵塞实现代码示例

2020-01-04 14:50:43
字体:
来源:转载
供稿:网友

官方其实已经给出了方案,只不过藏的有点深,在加上网上有很多不太靠谱的帖子误导了我(当然不排除我没理解的原因哈)。所以为了让有些朋友的少走点弯路,也为给自己做个备忘。

完整代码:https://github.com/wskssau/my_notespace的 python/todo_app

解决方案: flask+gevent

安装gevent

pip install gevent

修改代码

# 文件头部from gevent import monkeyfrom gevent.pywsgi import WSGIServer# 在玩websockets,可以无视之哈,有空贴下flask websockets实现哈from geventwebsocket.handler import WebSocketHandlerimport time# gevent的猴子魔法monkey.patch_all()app = Flask(__name__)app.config.update( DEBUG=True)@app.route('/asyn/1/', methods=['GET'])def test_asyn_one(): if request.method == 'GET':  time.sleep(10)  return 'hello asyn'@app.route('/test/', methods=['GET'])def test(): return 'hello test'if __name__ == "__main__": # app.run() http_server = WSGIServer(('', 5000), app, handler_class=WebSocketHandler) http_server.serve_forever()

运行之后可以先访问/asyn/1/再访问/test/,可以明显发现,/asyn/1/在做耗时任务时不会影响其他请求

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表