PHP MySQL set Connection Timeout

后端 未结 6 716
醉梦人生
醉梦人生 2020-12-17 18:19

There are certain posts on MySQL connection set time out from PHP using mysql.connect_timeout. I want to know if this set timeout from PHP just time out the initial connecti

6条回答
  •  醉话见心
    2020-12-17 18:58

    You would have to fork a child process, the parent process will kill the child process if some condition is not met within 20 seconds.

    Or use a language like node.js that doesn't block the current thread for an IO operation like a query.

提交回复
热议问题