mysqli_use_result() 和并发性
根据 mysqli_use_result 的文档
如果在客户端执行大量处理,则不应使用 mysqli_use_result(),因为这会占用服务器并阻止其他线程更新从中获取数据的任何表。
这仅适用于 myISAM 表还是也适用于 InnoDB?
According to the documentation at mysqli_use_result
One should not use mysqli_use_result() if a lot of processing on the client side is performed, since this will tie up the server and prevent other threads from updating any tables from which the data is being fetched.
Does this only pertain to myISAM tables or also for InnoDB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
刚刚检查:
MyISAM
锁定,InnoDB
不锁定:此锁定:
此不锁定:
Just checked:
MyISAM
locks,InnoDB
doesn't lock:This locks:
This doesn't: