Django 和 PostgreSQL 最新和最好的版本
我听说 PostgreSQL 和 Django + psycopg2 有很多兼容性问题。
对于从头开始的新 Django 项目,推荐的完全兼容的最新和最好的版本是什么?
I heard about lots of compatibility issues with PostgreSQL and Django + psycopg2.
What would be the recommended latest and greatest versions that are fully compatible for a new Django project starting from scratch?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该错误并不严重:它仅影响测试期间的数据库创建: https://code.djangoproject.com/ticket /16250 psycopg和django之间应该没有其他问题。
使用 psycopg 2.4.1 可以避免这个问题,但从那时起已经修复了几个错误,所以我宁愿对 django 应用一些简单的补丁,以使两者能够很好地协同工作。
顺便说一句,我想知道他们什么时候发布 django 1.3.2:这个 bug 已经存在 6 个月了......
The bug is not critical: it only affects database creation during tests: https://code.djangoproject.com/ticket/16250 There should be no other problem between psycopg and django.
The problem can be avoided using psycopg 2.4.1, but there have been several bug fixes since then, so I'd rather apply some simple patch to django to make the two play well together.
BTW I wonder when will they release django 1.3.2: the bug is been there for 6 months now...