Week 21

If indexes are supposed to speed up performance of query,  what does the author mean by a slow index?  https://use-the-index-luke.com/sql/anatomy/slow-indexes

What the author, Markus Winand, means by a slow index is that indexes are designed to speed up queries by organizing data in a search-optimized structure. However, they don't always guarantee a fast performance. This can be due to scanning leaf node chains to find all matches and fetching table data for each marked row, often involving slow random I/O. Indexes don't always guarantee fast approaches, due to the cost of large/scattered data.


As for myself, I've been trying to read every day after work. Some of the readings were a little harder to retain than others, but I've been trying to remain diligent. I've gotten a better grasp on databases and stuff like deadlocks. Just gotta keep at it.

Links to an external site.

Comments

Popular posts from this blog

Week 1

Week 4

Week 2