Mysql Query Results 有时候get max_user_connections超过了,虽然我可以建立连接,其他的东西是当前使用的连接数。我怎么知道请帮助。
答案 0 :(得分:0)
@Override
public void onPause() {
super.onPause();
mGoogleClient.stopAutoManage(getActivity());
mGoogleClient.disconnect();
}
变量定义自服务器启动以来同时使用的连接总数。
与变量‘max_used_connections’
相比,此变量不同。
系统变量‘max_connections’
定义客户端允许的最大同时连接数。
您可以使用公式‘max_connections’
找到拒绝连接的最大连接数。您可以参考各种监控服务,如MONyog,它可以很好地定义这些术语。