使用 Django 和 Drizzle 数据库?

发布于 2024-10-22 09:55:27 字数 133 浏览 1 评论 0原文

有人有使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦里南柯 2024-10-29 09:55:27

要使用 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.

沩ん囻菔务 2024-10-29 09:55:27

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文