上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页
摘要: 1. 查看cpu信息 cat /proc/cpuinfo # 查看物理CPU个数cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l# 查看每个物理CPU中core的个数(即核数)cat /proc/cpuinfo| grep "cpu c 阅读全文
posted @ 2017-07-20 15:00 fanblog 阅读(180) 评论(0) 推荐(0)
摘要: 1. 问题描述 当使用load data infile 向表中插入数据 而主键id是 auto_increment 时 ,执行 load data 不会报错 但插入也不成功 2. 问题解决 2.1 方法一 需要指明插入的数据对应那些列(除id之外的),并设置id为null 2.2 方法二 在数据中i 阅读全文
posted @ 2017-07-11 13:46 fanblog 阅读(2217) 评论(0) 推荐(0)
摘要: 1. problem description: as the title show, i miss the first problem using pt-online-schema-change tool to modify the table online. no more message pri 阅读全文
posted @ 2017-07-04 16:54 fanblog 阅读(472) 评论(0) 推荐(0)
摘要: 1. code 阅读全文
posted @ 2017-06-27 16:07 fanblog 阅读(815) 评论(0) 推荐(0)
摘要: 在shell脚本的开头往往有一句话来定义使用哪种sh解释器来解释脚本。目前研发送测的shell脚本中主要有以下两种方式:(1) #!/bin/sh(2) #!/bin/bash以上两种方式有什么区别?对于脚本的实际运行会产生什么不同的影响吗?脚本test.sh内容:#!/bin/shsource p 阅读全文
posted @ 2017-06-25 17:02 fanblog 阅读(44859) 评论(0) 推荐(7)
摘要: 1. 查询所有数据库 表 2. 慢查询 查询时间 show variables like '%slow_query_time%'; show variables like '%long_query_time%'; show variables like '%slow%'; show variable 阅读全文
posted @ 2017-06-04 23:10 fanblog 阅读(166) 评论(0) 推荐(0)
摘要: 1. 概述 上传图片到 o:/mmfiles_2017/39973/25444/333.jpg目录下 目录不存在会报标题中的错误 必须先创建目录 2. 方法 File filePath = new File(path); if(!filePath.exists()){ filePath.mkdirs 阅读全文
posted @ 2017-05-25 15:32 fanblog 阅读(806) 评论(0) 推荐(0)
摘要: 1.概述 还在用struts1?是的,在地球的没写地方,落后的生产方式还在运转(老项目). 从 继承org.apache.struts.action.Action, 继承org.apache.struts.action.ActionForm开始吧 2. 代码 2.1 html页面 2.2 _file 阅读全文
posted @ 2017-05-24 19:28 fanblog 阅读(1351) 评论(0) 推荐(0)
摘要: 1. 概述 当从网络加载图片失败 希望显示默认图 img 标签有个 onerror属性 2. 代码 2.1 java服务端组织标签整个返回前端 2.2 前端组织标签 2.3 说明 主要的问题是特殊字符'(单引号)或"(双引号)的转义问题 阅读全文
posted @ 2017-05-23 18:08 fanblog 阅读(2902) 评论(0) 推荐(0)
摘要: 1.概述 频繁的创建和销毁数据库连接消耗非常多的系统资源,创建一个池子, 管理一定数量的连接,用的时候去池中取,用完了放回池中,这时比较通用的做法。 2.关键字 LinkedList synchronized InvocationHandler CountDownLatch 3. 代码 3.1 Co 阅读全文
posted @ 2017-05-21 13:15 fanblog 阅读(2691) 评论(1) 推荐(1)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页