mysqldumpslow使用说明总结

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
mysqldumpslow --help
Usage: mysqldumpslow [ OPTS... ] [ LOGS... ]

Parse and summarize the MySQL slow query log. Options are

--verbose verbose
--debug debug
--help write this text to standard output

-v verbose 输出详细信息
-d debug
-s ORDER what to sort by (al, at, ar, c, l, r, t), 'at' is default
al: average lock time
ar: average rows sent
at: average query time
c: count
l: lock time
r: rows sent
t: query time
-r reverse the sort order (largest last instead of first)
-t NUM just show the top n queries
-a don't abstract all numbers to N and strings to 'S'
-n NUM abstract numbers with at least n digits within names
-g PATTERN grep: only consider stmts that include this string
-h HOSTNAME hostname of db server for *-slow.log filename (can be wildcard),
default is '*', i.e. match all
-i NAME name of server instance (if using mysql.server startup script)
-l don't subtract lock time from total time

Read More

查看mysql数据库连接数、并发数相关信息

1
2
3
4
5
6
7
8
9
mysql> show status like 'Threads%';
+---------------------------+-------+
| Variable_name | Value |
+---------------------------+-------+
| Threads_cached | 58 |
| Threads_connected | 57 | ###这个数值指的是打开的连接数
| Threads_created | 3676 |
| Threads_running | 4 | ###这个数值指的是激活的连接数,这个数值一般远低于connected数值
+----------------------------+--------+

Threads_connected 跟show processlist结果相同,表示当前连接数。准确的来说,Threads_running是代表当前并发数

Read More

PHP的时间函数strtotime

时间加减

1
2
3
4
<?php  
//获取本地 提取年份+1
$date=date("Y-m-d",mktime(0,0,0,date("m") ,date("d"),date("Y")+1));
?>

如果要获取数据库中的时间应该如何处理呢?在PHP文档中找到了一个很好的函数strtotime,可以对时间进行加减:
int strtotime ( string time [, int now] )
返回类型 int

Read More

notepad++插件大全

Explorer 资源管理器
Colour Picker 拾色器
SecurePad 加密工具
HTMLTag
NppExport 导出为特殊格式
Simple script
AHKExtLexer
Analyse Plugin 分析
AutoSave 自动保存
AwkPlugin
CCompletion 代码自动完成
code alignment 代码自动对齐

Read More