Python Paste 脚本因模板文件过大而崩溃?
我有一个 Pyramid 应用程序,它使用 Chameleon 作为其模板引擎。
我有一个(相当大,但我有更大的)模板,但它不起作用。
每当我尝试将其渲染为视图返回时,粘贴服务器development.ini都会严重崩溃,而没有任何错误(Mac OS X的终端告诉我“总线错误”)。
当我使用 apache 和 mod_wsgi 在我的服务器上运行完全相同的代码时,一切都运行良好。
我该如何开始找出问题所在?
I have a Pyramid application that uses Chameleon as its template engine.
I have one (quite large, but I have had larger) template that will just not work.
Whenever I try to render it to return as a view, paste server development.ini crashes miserably without any errors (Mac OS X's terminal tells me "bus error").
When I run the exact same code on my server with apache and mod_wsgi, everything works great.
How do I even start figuring out whats wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先安装 yolk 以便您可以列出已安装的所有 python 软件包的版本 <代码>蛋黄-l。
接下来,您应该将模板发布到 gist 或 pastebin 这样人们就可以看到您正在使用的模板并尝试重现问题。事实上,如果您可以提供可以在您这边重现它的 Pyramid 应用程序的简化版本,那就更有帮助了。
Start by installing yolk so that you can list the versions of all the python packages you have installed with
yolk -l
.Next, you should post your template to gist or pastebin so people can see the template you're working with and try to reproduce the problem. In fact, it would be even more helpful if you can provide a simplified version of the Pyramid app that reproduces it on your side.