Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
deepaksood619 committed Dec 23, 2024
1 parent ced110c commit bdb30c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# System Design - What happens when you type google.com into your browser's address box and press enter?

![What happens when you type a URL into a browser?](../../media/What%20happens%20when%20you%20type%20a%20URL%20into%20a%20browser?.webp)
![What happens when you type a URL into a browser?](../../media/What-happens-when-you-type-a-URL-into-a-browser.webp)

Ever wondered what exactly happens when you type google.com into your browser's address box and press enter?

Expand Down
8 changes: 7 additions & 1 deletion docs/databases/indexing/mysql-indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,13 @@ https://www.eversql.com/how-to-find-unused-indexes-in-a-mysql-database

## Full table scans

`select * from sys.x$statements_with_full_table_scans;`
```sql
select * from sys.x$statements_with_full_table_scans;`
select * from sys.`x$statement_analysis`;
select * from sys.`x$statements_with_runtimes_in_95th_percentile`;
```

## Rebuilding or Repairing Tables or Indexes

Expand Down

0 comments on commit bdb30c4

Please sign in to comment.