gae 上的 nagare 框架?
有人在谷歌应用引擎上使用 nagare 框架吗?
这看起来很有趣,但我找不到任何关于如何在
谷歌应用程序引擎上使用它的文档,因为它使用无堆栈Python。
那么它有可能在谷歌应用程序引擎上运行吗?
另外,stack less python 与普通 python 有何不同?
谢谢。
链接:
anyone using nagare framework on google app engine ?
it seems interesting, but i could not find any documentaiton on how to use it on
google app engine, as it uses stackless python.
so any chances of its running on google app engine ?
also, how stack less python differ from normal python ?
thanks.
links :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我目前有一个尚未发布的 Nagare for GAE 原型版本(您可以在 http: //nagareproject.appspot.com/)
以下是 3 个无法在 GAE 上运行的 Nagare 组件,及其在此原型中的解决方法:
Stackless Python:
Lxml:
PEAK-Rules:
所以,这Nagare 版本在 GAE 上运行得非常好。我敢说,即使有这些限制,Nagare 在 GAE 上仍然比其他 Python 框架提供更好的编程环境。
如果您想测试它,请在 Nagare 用户组中发送消息或向我发送个人邮件至 alain.poirier at net-ng.com
I currently have a not-yet-released, prototype version of Nagare for GAE (you can see the canonical Counter example at http://nagareproject.appspot.com/)
Here are the 3 Nagare components not working on GAE, with their workarounds in this prototype:
Stackless Python:
Lxml:
PEAK-Rules:
So, this version of Nagare is pretty much working fine on GAE. And I dare to say that, even with these limitations, Nagare still stay on GAE a better programming environement than the others Python frameworks.
If you want to test it, send a message in the Nagare users group or send me a personal mail to alain.poirier at net-ng.com
如果它对 Stackless 具有硬依赖性,则它将无法在 AppEngine 上运行。 AE 有自己的 Python 运行时。如果它没有利用任何 Stackless 对 Python 的非标准扩展,它可能会起作用,但我想说它起作用的机会不是很大。
If it has a hard dependency on Stackless, it won't run on AppEngine. AE has its own Python runtime. If it doesn't leverage any of Stackless's non-standard extensions to Python, it might work, but I'd say that your chances aren't very good that it would just work.