哪些基于 python 的 ajax 推送服务器比较适合使用
我目前正在使用 python 开发一个网络应用程序。我目前使用 Django 作为我的 Web 框架。我打算使用 ajax 推送将实时 Web 功能集成到应用程序中。然而,我对应该采用哪种基于 python 的推送服务器有点困惑。我听说过其中的一些,Orbited、Gevent、Tornado,但我现在的主要问题是,当涉及到实时 Web 应用程序时,我还是个新手。我想使用 python,并且想要一个具有良好文档的框架。
I have a web application im currently working on in python. I'm using Django as my web framework currently. I intend to integrate real-time web features into the application using ajax push. However, I'm a bit confused as to what python based push server i should adopt. I've heard of a few of them, Orbited, Gevent, Tornado, but my main issue right now is that i'm a green horn when it comes to realtime web applications. I'd like to use python and i'd like a framework with good documentation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
很多人选择 gevent 作为具有实时功能的网络应用程序,因为它速度快、易于使用并且有许多支持包。
看看这些包:
和这些教程:
希望这会有所帮助。
A lot of people choose gevent for webapps with real-time features because of the speed, ease of use and a number of supporting packages.
Take a look at these packages:
and these tutorials:
Hope this helps.
APE 看起来很酷。
我认为让它与 PDjango 作为后端一起工作不是问题。
APE seems a cool thing.
I think it's not a problem to make it work with PDjango as a backend.
我认为最受欢迎的是facebook开源的tornado。它还有相当不错的文档。
I think the most popular is tornado open-sourced by facebook. It also has pretty decent documentation.