日志分类

mysql性能调优电子书

本书介绍了mysql性能调优的很多知识,这是原书的第二版

作者: Baron Schwartz / Peter Zaitsev / Vadim Tkachenko / Jeremy Zawodny / Arjen Lentz / Derek Balling

副标题: Optimization, Backups, Replication, and More
ISBN: 9780596101718
页数: 708
定价: USD 49.99
出版社: O’Reilly Media, Inc.
装帧: Paperback
出版年: 2008-06-18

High Performance MySQL is the definitive guide to building fast, reliable systems with MySQL. Written by noted experts with years of real-world experience building [...]

在Mysql中一种比较好的分页策略

在Mysql中一种比较好的分页策略
本文的灵感来自一篇Efficient Pagination Using MySQL(更好的分页策略)的报告,使用asc和desc和缩小范围来减小查询量

首先看一下分页的基本原理:

mysql> explain SELECT * FROM message ORDER BY id DESC LIMIT 10000, 20\G
***************** 1. row **************
id: 1
select_type: SIMPLE
table: message
type: index
possible_keys: NULL
[...]