sql 根据in条件排序查询结果17-08-14
base64解密中文乱码 window.atob()17-08-08
shell 命令 收集 中...17-06-27
查询同一张表,不考虑是否有null ,以下是实测模拟百万级用户量多次执行查询,分别执行时间的区间:select count(*) from usero; 0.516s-0.566s
select count(1) from usero; 0.507s - 0.569s
select count(id) from usero;主键 0.655s-0.707s
select count(name) from usero; 普通索引 0.701-0.747s
select count(phone) from usero; 非索引 1.041s-1.138sps: 1.count(*) mysql会转为 count(1),
....
....
文字说明: CGI FastCGI php-cgi php-fpm cgi => FastCGI(快速通用网关接口): 工作原理 a)Web Server 启动时载入FastCGI进程管理器 (IIS或Apache Module)(nginx或者apache启动时,加载php功能模块,即加载php-fpm); b)FastCGI进程管理器(php-fpm)首先初始化自己,启动一批CGI解释器进程(可见多个php-cgi),然后等待来自Web Server的连接。 c)当Web Server中的一个客户端请求达到时(nginx主进程master管理子进程worker的数量,worker负责处理请求,当请求的php程序时
....
....