使用 Django 和 Drizzle 数据库?
有人有使用 Django 和 Drizzle 数据库的经验吗?
Drizzle 的第一个 GA 版本刚刚发布,根据我的理解,它应该与 Django 非常匹配。作为 MySQL 的精简版本,它仍然提供所有需要的功能,并希望有更好的性能。
Has anyone experience in using Django with the Drizzle database?
The first GA version of Drizzle has just been released and from my understanding it should be be a good match for Django. Being a stripped down version of MySQL it still provides all the needed functionality and hopefully a better performance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要使用 Django MySQL 后端,您必须安装 MySQLdb 驱动程序 。当我在安装了 Drizzle(但未安装 MySQL)的计算机上安装 MySQLdb 时,出现以下错误:
EnvironmentError: mysql_config not found
。我相信这是 MySQLdb 寻找 编译器选项来构建的步骤客户端。我们可能需要 Django MySQL 后端的一个分支,它使用 libdrizzle 的 Python 包装器。To use the Django MySQL backend, you have to install the MySQLdb driver. When I install MySQLdb on a machine that has Drizzle installed (but not MySQL), I get this error:
EnvironmentError: mysql_config not found
. I believe this is the step where MySQLdb is looking for compiler options to build the client. We probably need a fork of the Django MySQL backend that uses a Python wrapper around libdrizzle.MySQLdb 与 Drizzle 配合得很好。我们用它来与 SQLAlchemy 配合使用。
我无法谈论您遇到的问题,但我也倾向于在我的机器上同时安装 MySQL 和 Drizzle。事情对我来说没问题,但我很乐意帮助解决其他人遇到的任何问题
MySQLdb is playing just fine with Drizzle. We use it to work with SQLAlchemy.
I can't speak to the issues you encountered, but I also tend to have both MySQL and Drizzle on my machines. Things built ok for me, but I'd be happy to help resolve any issues anyone else is having