Recent Posts

冗余索引对查询效率的影响

1 minute read

背景: 在一般的数据库书籍中,简述到如何合理创建索引时都会出现这么一段话: “索引能提高sql的执行效率,但是过多不合理的索引也会影响数据库的性能” 过度索引是如何影响数据库的性能的呢? 1。 在执行sql之前,数据库会根据metadata信息决定该使用哪个索引,如果索引过多会影响这...

固态硬盘与mysql

less than 1 minute read

最近关注mysql新的存储引擎xtradb和innodb-plugin,看到很多人在测试他们在ssd(固态硬盘)上面的性能,以前对固态硬盘不太了解,于是了解了一下。

关于mysql skip-name-resolve选项

1 minute read

When a new thread connects to mysqld, mysqld will spawn a new thread to handle the request. This thread will first check if the hostname is in the hostname c...