mysql和中止的连接:为什么这么高的数字?

时间:2017-07-15 10:48:06

标签: mysql

美好的一天,

我是mysql环境的新手(我提前感谢您的理解和放纵)......我一直在使用SHOW GLOBAL STATUS查看统计数据。

enter image description here

我的服务器已经启动了24小时,我发现如此大量的流产客户非常惊讶。难道我在这个方法的编程中缺少一个重要的方面(在AJAX中每1/2秒调用一次)?

function getLatestDataFromDatabase(){
    $query = 'CALL sp_tbl_domotique_components_get_values';
    if($result = $this->db->query($query)){
        $return = '';
        while($r = $result->fetch_object()){
            $return .= $r -> tech_name . ' | ' . $r -> value_t_f . ' | ' . $r -> component_type . ' | ';
            $return .= '<hr/>';
            $data[] = $r;
        }

        $encode_donnees = json_encode($data);

    $myfile = fopen("output.txt", "w") or die("Unable to open file!");
    fwrite($myfile, $encode_donnees);
    fclose($myfile);

    return $encode_donnees;
    }
}

非常感谢你的提示,非常感谢。

1 个答案:

答案 0 :(得分:0)

中列出的Aborted_clients有很多可能的原因

https://dev.mysql.com/doc/refman/5.7/en/communication-errors.html

尝试破解只是众多可能原因之一。