通过status命令,查看Slow queries这一项,如果值长时间>0,说明有查询执行时间过长 代码如下:以下为引用的内容:mysql> status; ————– mysql Ver 11.18 Distrib 3.23.58, for redhat-linux-gnu (i386) Connection id: 53 Current database: (null) Current user: rootlocalhost Current pager: stdout Using
在logcat中打后台打印json数据时,json数据太过于长就会有打印不全的问题,这里记录一个办法就是分段打印:
// 采用分段打印 四千字符分一段
if (response.length() > 4000) {
for (int i = 0; i < response.length(); i += 4000) {
if (i + 4000 < response.length()) {
Log.i(第 + i + 数据, response.substring(i