摘要: (1) 针对Innodb表,尽量不执行 SELECT COUNT(*) 语句,因为Innodb表没有类似MyISAM那样的内部计数器来记录表记录总量,执行这个操作将会全表扫描,速度很慢. (2) 尽量使用MyISAM表,除非必须使用其他类型,因为MyISAM类型的总体读写效率是相当高的,缺点是... 阅读全文
posted @ 2012-06-10 22:31 猪尬亮 阅读(206) 评论(0) 推荐(1) 编辑
摘要: man scp:scp copies files between hosts on a network. 最简单的用法: scp zzr@10.103.33.131:/var/log/zzrlog /var/www/zzr/ The authenticity of host '10.103... 阅读全文
posted @ 2012-06-10 22:29 猪尬亮 阅读(238) 评论(0) 推荐(0) 编辑
摘要: [yayug@yayu ~]$ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 3.9G 300M 3.4G 8% / /dev/sda7 100G 188M 95G 1% /data0 /dev/sdb1 133G 8... 阅读全文
posted @ 2012-06-10 22:28 猪尬亮 阅读(208) 评论(0) 推荐(0) 编辑
摘要: top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器。下面详细介绍它的使用方法。 top - 01:06:48 up 1:22, 1 user, load average: 0.06, 0.60, 0.48Tasks: 29 tota... 阅读全文
posted @ 2012-06-10 22:27 猪尬亮 阅读(538) 评论(0) 推荐(0) 编辑
摘要: Syn Flood DOS with LINUX sockets need to use [Raw Socket] So I find some about it. 1、数据流套接字(Stream Socket) 数据流式是一种面向连接的Socket,针对于面向连接的TCP服务应用,使用使用比较... 阅读全文
posted @ 2012-06-10 22:23 猪尬亮 阅读(2381) 评论(0) 推荐(0) 编辑
摘要: [Apache能处理最大请求数] ps -ef | grep httpd | wc -l [Apache并发请求数及TCP连接状态]netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 这两天搭建了一组Apa... 阅读全文
posted @ 2012-06-10 22:22 猪尬亮 阅读(232) 评论(0) 推荐(0) 编辑
摘要: Request格式:HTTP请求行(请求)头空行可选的消息体注:请求行和标题必须以<CR><LF>作为结尾(也就是,回车然后换行)。空行内必须只有<CR><LF>而无其他空格。在HTTP/1.1协议中,所有的请求头,除Host外,都是可选的。实例:GET / HTTP/1.1Host: gpcuster.cnblogs.comUser-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10Accept: 阅读全文
posted @ 2012-06-10 22:21 猪尬亮 阅读(134) 评论(0) 推荐(0) 编辑
摘要: ##理论: ##select * from user where xx=1 limit 10,10需要有ORDER BY 字段。 然后需要 (xx, orderCol) 的复合索引,再使用select * from user a inner join (select id from user where xx=1 order by id limit 10,10) b using(id)## 测试 ##大数据量分页表:product 约36W条数据使用普通limit: 14.8276 sSELECT * FROM product order by id limit 300000, 5优化后: 0 阅读全文
posted @ 2012-06-10 22:20 猪尬亮 阅读(101) 评论(0) 推荐(0) 编辑
摘要: ## 对服务器用户 ## 系统初装: 1.更新apt: sudo apt-get update 2.安装phpmyadmin: sudo apt-get install phpmyadmin 3.更改/var/www权限: chmod 777 [-R] /var... 阅读全文
posted @ 2012-06-10 22:18 猪尬亮 阅读(324) 评论(0) 推荐(0) 编辑