Django-nonrel 和 Django-SocialAuth 可以很好地协同工作吗?
有人让 Django-SocialAuth 与 Django-nonrel 一起使用吗? 他们一起工作吗?
如果您已经做到了,请告诉我。有什么需要注意的地方吗?
Anybody got Django-SocialAuth working with Django-nonrel?
Do they work together?
Please let me know if you have done it. Any gotchas to watch for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确实如此,如果您使用非相关数据库,您将遇到的唯一问题是 Social_Auth 的管理模块将无法工作。他们使用连接。我正在考虑分叉该项目,看看是否可以让它们与非 rel 一起工作,但我没时间了。
我所做的是设置两个独立的数据库。我将我的用户和 Social_auth 信息存储在关系数据库中,并将网站的其余内容存储在 MongoDB 中。到目前为止似乎运行良好,但该项目仍在开发中。
They do, the only issue you'll run into if you are using a non-rel database is that the admin modules for Social_Auth will not work. They use joins. I was considering forking the project to see if I could make them work with non-rel, but I ran out of time.
What I've done is setup two separate databases. I'm storing my users and social_auth information in a relational database and the rest of my site content in MongoDB. Seems to be working well so far but the project is still under development.