想问下MySQL max_connections最大能设置成多少?可不可以设置几千万几亿或者更大的,或者是不限制

解决方案 »

  1.   

    max_connections
    就是同时又多少人访问你的web类似某些网站的在线人数
      

  2.   

    主要是做条形码打印的,SEVER端监听客户端输入的条形码,并导入数据库,如果连接数太小明显不够用,而我改成个几十万的数之后出来这个,有关系么?
    090917 15:31:06 [Warning] Changed limits: max_open_files: 2048  max_connections:
     1910  table_cache: 64
      

  3.   

    mysql> show global variables like '%max_connections%';
    mysql> set global max_connections=10000;
    mysql> show global variables like '%max_connections%';