姜戈 +什么NOSQL在生产中使用最成熟?
我想将 Django 与 NOSQL 解决方案一起使用。是否有任何生产就绪的 NOSQL 解决方案可以与最新的 Django 1.3 很好地配合?
I would like to use Django with a NOSQL solution. Are there any production ready NOSQL solutions that work nicely with the latest Django 1.3 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你应该尝试 django non-rel。目前它支持appengine和mongodb。 Redis 和 cassandra 也完成了一些工作。一旦准备好,这个项目应该会与 django 1.4 合并。
就我个人而言,我已经使用它成功地为 appengine 创建了一个简单的测试应用程序。
You should try django non-rel. Currently it has support for appengine and mongodb. There are some work done for redis and cassandra too. This project is supposed to be merged with django 1.4 once it´s ready.
Personally I´ve successfully created a simple test app for appengine using it.
说“我想使用 NoSQL”有点奇怪。每个 NoSQL 都是不同的,它并不神奇,也不能解决所有问题。
It's a bit weird to say "i want to use a NoSQL". Every NoSQL is different, it's not magic and it doesn't solve every problem.
如果您决定使用CouchDB,您可以看看Couchdbkit,它有一个 Django 扩展 >。
If you decide to go with CouchDB you might take a look at Couchdbkit, which has a Django extension.
您需要更好地解释您尝试使用 Django 做什么或者您的数据是什么样子。
我们最终使用 Django 并将我们自己的基于 http 的自定义“服务”开发到 Mongo 和 Neo4j 中。我们自己操作json数据。
You need to explain better what you are trying to do with Django or how does your data look like.
We ended up using Django and developed our own custom http-based "service" into Mongo and Neo4j. We manipulated the json data ourselves.