索引原则
索引原则
四条原则
- 索引不是越多越好
- 不要对经常变动的数据加索引
- 小数据量的表不需要加索引
- 索引一般加在常用来查询的字段上
延伸学习
索引的数据结构
hash类型的索引
Btree: innoDB 默认的数据结构
扩展阅读 http://blog.codinglabs.org/articles/theory-of-mysql-index.html
索引的数据结构
hash类型的索引
Btree: innoDB 默认的数据结构
扩展阅读 http://blog.codinglabs.org/articles/theory-of-mysql-index.html