gpt4 book ai didi

mysql - 我怎么能mysql wait_timeout无限

转载 作者:可可西里 更新时间:2023-11-01 08:44:28 25 4
gpt4 key购买 nike

我有这个配置

mysql> SHOW VARIABLES where Variable_name like '%timeout';
+----------------------------+-------+
| Variable_name | Value |
+----------------------------+-------+
| connect_timeout | 5 |
| delayed_insert_timeout | 300 |
| innodb_lock_wait_timeout | 50 |
| innodb_rollback_on_timeout | OFF |
| interactive_timeout | 28800 |
| net_read_timeout | 30 |
| net_write_timeout | 60 |
| slave_net_timeout | 7200 |
| table_lock_wait_timeout | 50 |
| wait_timeout | 28800 |
+----------------------------+-------+
10 rows in set (0.01 sec)

mysql>

我需要长时间连接,想要无限超时。

看看我的 php 源代码。

<?php
$link = @mysql_connect("localhost","root",$pw);
...
mysql_query($query,$link);
...
// A long time flows (maybe 28,800sec)
mysql_query($query,$link); // error !!
?>

请指教。

最佳答案

答案是。您不能将 wait_timeout 设置为无限制。

可以引用MYSQL wait_timeout

但是如果你想改变它,那么你可以这样尝试:

SET GLOBAL connect_timeout=....;

关于mysql - 我怎么能mysql wait_timeout无限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32451073/

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