摘要:
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: 阅读全文
摘要:
##理论: ##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 阅读全文
摘要:
## 对服务器用户 ## 系统初装: 1.更新apt: sudo apt-get update 2.安装phpmyadmin: sudo apt-get install phpmyadmin 3.更改/var/www权限: chmod 777 [-R] /var... 阅读全文