8

Is it possible to use server-sent events from a python/Flask application that is behind uWSGI and Nginx?

I've found packages that implement SSE in python/Flask, but they seem to all do so using gevent and greenlets.

https://github.com/DazWorrall/flask-sse

Thanks!

4

2 回答 2

1

最新版本的 uWSGI(从 1.9 开始)内置了对 websockets / SSE 的支持。这篇文章提供了一个很好的指南:

uWSGI 文档:卸载 Websocket 和服务器发送事件

于 2015-04-13T12:19:04.900 回答
0

您不能简单地将 gevent 与 uWSGI 一起使用吗?

通常这种技术应该与异步引擎一起使用,因为多线程/多进程范式成本太高。

于 2013-03-11T19:29:22.017 回答