Intermediate Numbers & Data #database #performance #sql #indexing #query-optimization

Database Performance Vocabulary

5 exercises on reading and discussing database performance metrics in professional English.

Database performance vocabulary essentials
  • Full table scan: reading every row — O(n), expensive without an index
  • Index hit: query uses an index — O(log n), fast
  • Cache hit ratio: % of queries served from memory, not disk
  • Connection pool saturation: no idle connections — new requests wait
0 / 5 completed
1 / 5
A database engineer says: "Adding a composite index on (user_id, created_at) reduced the query time from 840ms to 4ms." How would you describe this improvement professionally?