gpt4 book ai didi

php - 锁定 Mysql 表以供写入但允许读取

转载 作者:行者123 更新时间:2023-11-29 02:07:38 24 4
gpt4 key购买 nike

有没有办法锁定一个 Mysql 表只写,这样另一个脚本仍然可以进行 SELECT 查询?

我正在使用此代码写入表(几乎每秒执行一次):

mysql_query("LOCK TABLES table WRITE;");
mysql_query("insert into...
mysql_query("UNLOCK TABLES;");

和这个选择(这个脚本只是卡住,可能是因为锁定):

mysql_query("select * from...

谢谢。

最佳答案

没有。

WRITE lock:

Only the session that holds the lock can access the table. No other session can access it until the lock is released.

http://dev.mysql.com/doc/refman/5.0/en/lock-tables.html

关于php - 锁定 Mysql 表以供写入但允许读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3120018/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com