如何更改mysql中的bdb缓存大小?
我想更改 mysql 数据库上的变量 bdb 缓存大小 (bdb_cache_size),以便能够导入更大的 SQL 文件(是的,我已将 php.ini 中的所有其他变量设置为更高的值,但它不起作用) phpmyadmin。
我怎样才能做到这一点?
I would like to change variable bdb cache size (bdb_cache_size) on my mysql database to be able to import bigger SQL files (yes, i've set all other variables for example in php.ini to higher values and it does not work) in phpmyadmin.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实在 MySQL 数据库中使用 BDB,请检查 my.cnf 中是否有skip-bdb。 默认情况下,大多数安装都会禁用它(并以这种方式禁用它)。
Berkeley DB 在 MySQL 中很快就会消失,所以如果你正在使用它,我建议你转向 InnoDB(或者至少是 MyISAM)。
If you're really using BDB in your MySQL database, check you don't have skip-bdb in your my.cnf. Most installations disable it (and disable it this way) by default.
Berkeley DB is going away very soon in MySQL, so if you're using it, I'd recommend you shift to InnoDB (or at the very least MyISAM).