文章分类 - MySql
分享MySql相关技术
摘要:mapper import org.apache.ibatis.annotations.Param; CreatPartitionMapper{ /** 创建表分区 : param1: 范围 ;param 2 :分区名称 */ void creatPartition(@Param("localDat
阅读全文
摘要:1.查询最大连接数: show variables like 'max_connections'; ps:我这本地为200,MySql 2.设置最大连接数: //设置为1000 set global max_connections=1000; 有点:修改很快,不需要动配置文件。 缺点:MySql重启
阅读全文