发布网友 发布时间:2022-04-25 00:01
共1个回答
热心网友 时间:2022-04-10 07:20
为忙。其他worker取连接时,判断为忙的话跳过此连接。
用下面的代码演示一下。
<?php
for($i = 0; $i < 1; $i ++)
{
$db = new mysqli("localhost", "root", "root", "test");
$lock = fopen("/tmp/mysql_lock.txt", 'w+');
if ($db->connect_errno)
{
printf("Connect failed: %s\n", $db->connect_error);
exit();
}