摘要: 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) 编辑
摘要: 参考http://dev.mysql.com/doc/refman/5.5/en/string-literals.html#character-escape-sequences Escape Sequence Character Represented by Sequ... 阅读全文
posted @ 2012-06-09 12:40 猪尬亮 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1.创建replication账号(Master 和 Slave) GRANT REPLICATION SLAVE,REPLICATION CLIENT ON *.* TO repl@'192.168.200.%' IDENTIFIED BY 'bravezhang'; 2.修改my.cnf ... 阅读全文
posted @ 2012-06-09 12:03 猪尬亮 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 先备案,以后再写 阅读全文
posted @ 2012-06-08 15:42 猪尬亮 阅读(117) 评论(0) 推荐(0) 编辑
摘要: OS: CentOS 32bitFile System: ext3Mysql Version: 5.5.3m3 source code 今天做了数据插入测试,遇到mysql报错1. OLTP测试的时候MyISAM引擎插入数据最多只能4719889条,Innodb则没有问题报错:ALERT: Erro... 阅读全文
posted @ 2012-06-08 15:36 猪尬亮 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 1.下载 http://www.maatkit.org/download http://code.google.com/p/maatkit/downloads/list 2.文档http://www.maatkit.org/doc/ 3.安装查看INSTALL perl MAKEFILE.PL ... 阅读全文
posted @ 2012-06-07 15:08 猪尬亮 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 安装:下载 http://sysbench.sourceforge.net/ 1 tar zxvf sysbench-0.4.12.tar.gz2 cd sysbench-0.4.123 ./autogen.sh (问题一)4 ./configure --prefix=/usr/local/w... 阅读全文
posted @ 2012-06-07 12:31 猪尬亮 阅读(1811) 评论(0) 推荐(0) 编辑
摘要: 先试试看,这边的代码高亮用着舒服的话,技术文章就贴到这里了~我的Mysql DBA之路,从今天开始做一些记录了~ 阅读全文
posted @ 2012-06-07 09:29 猪尬亮 阅读(114) 评论(0) 推荐(0) 编辑