1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Merge pull request #1131 from taoes/master

fix: 修正单词的错误
This commit is contained in:
Guide哥 2021-03-18 23:03:35 +08:00 committed by GitHub
commit 0f8129d8dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@
《高性能MySQL》第四章如是说And, in case youre wondering, allowing NULL values in the index really doesnt impact performance 。NULL 值的索引查找流程参考https://juejin.im/post/5d5defc2518825591523a1db ,相关阅读:[MySQL中IS NULL、IS NOT NULL、!=不能用索引?胡扯!](https://juejin.im/post/5d5defc2518825591523a1db) 。 《高性能MySQL》第四章如是说And, in case youre wondering, allowing NULL values in the index really doesnt impact performance 。NULL 值的索引查找流程参考https://juejin.im/post/5d5defc2518825591523a1db ,相关阅读:[MySQL中IS NULL、IS NOT NULL、!=不能用索引?胡扯!](https://juejin.im/post/5d5defc2518825591523a1db) 。
9. 删除长期未使用的索引,不用的索引的存在会造成不必要的性能损耗 MySQL 5.7 可以通过查询 sys 库的 chema_unused_indexes 视图来查询哪些索引从未被使用 9. 删除长期未使用的索引,不用的索引的存在会造成不必要的性能损耗 MySQL 5.7 可以通过查询 sys 库的 schema_unused_indexes 视图来查询哪些索引从未被使用
10. 在使用 limit offset 查询缓慢时,可以借助索引来提高性能 10. 在使用 limit offset 查询缓慢时,可以借助索引来提高性能