Skip to content

Commit 09f5342

Browse files
Merge pull request #2 from hackmysql/path-revamp
Path revamp
2 parents 07083e8 + 127f2b9 commit 09f5342

62 files changed

Lines changed: 1162 additions & 172 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

config.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ copyright = "2024 Daniel Nichter"
1515
[taxonomies]
1616
tag = "tags"
1717
series = "series"
18+
path = "path"
1819

1920
[markup.goldmark.renderer]
2021
unsafe = true

content/21-parameter-group-values-to-change-in-amazon-rds-for-mysql.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ comments: true
66
aliases:
77
- /post/21-parameter-group-values-to-change-in-amazon-rds-for-mysql/
88
disqus_url: "https://hackmysql.com/post/21-parameter-group-values-to-change-in-amazon-rds-for-mysql/"
9+
params:
10+
path: cloud
911
---
1012

1113
[Amazon RDS for MySQL](https://aws.amazon.com/rds/mysql/) uses many default values for system variables, but it also sets a few "sys vars" with different values. As with any database, neither product (MySQL) nor provider (AWS) defaults can best suite all use cases. It's our responsibility to carefully review and set every important system variable. This is tedious and difficult, but I've done it for you.

content/about.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: "About"
3-
menu: main
43
summary: "Hack MySQL is the personal website of Daniel Nichter, author of the book Efficient MySQL Performance published by O'Reilly. His webiste explores MySQL, Go, and software design."
54
---
65

content/are-aurora-performance-claims-true.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ type: "page"
77
lastMod: "2024-06-04T13:36:00-04:00"
88
aliases:
99
- /post/are-aurora-performance-claims-true/
10+
params:
11+
path: cloud
1012
---
1113

1214
Amazon claims that Aurora has "Up to 5X the throughput of MySQL".

content/book-0.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
type: "page"
32
date: "2021-12-27T09:30:00-05:00"
43
title: "Efficient MySQL Performance"
54
subtitle: "Preface"

content/book-1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ aliases:
88
- /post/book-1/
99
disqus_url: "https://hackmysql.com/post/book-1/"
1010
series: "Behind the Book"
11+
params:
12+
path: qrt
1113
---
1214

1315
Editors and technical reviewers suggested that I cover how to configure MySQL query metrics in chapter 1 of [_Efficient MySQL Performance_](https://oreil.ly/efficient-mysql-performance), but I deferred because it was out of scope for the book, which focuses on engineers _using_ MySQL, not DBAs.

content/book-10.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ aliases:
99
- /post/book-10/
1010
disqus_url: "https://hackmysql.com/post/book-10/"
1111
series: "Behind the Book"
12+
params:
13+
path: cloud
1214
---
1315

1416
No, I don't think so.

content/book-2.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ aliases:
99
- /post/book-2/
1010
disqus_url: "https://hackmysql.com/post/book-2/"
1111
series: "Behind the Book"
12+
params:
13+
path: index
1214
---
1315

1416
As of MySQL 8.0.18, [`EXPLAIN ANALYZE`](https://dev.mysql.com/doc/refman/8.0/en/explain.html#explain-analyze) is an indispensable tool for understanding query execution because it breaks down the query execution stage of response time by measuring each step of the query execution plan.

content/book-3.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ aliases:
99
- /post/book-3/
1010
disqus_url: "https://hackmysql.com/post/book-3/"
1111
series: "Behind the Book"
12+
params:
13+
path: data
1214
---
1315

1416
Is MySQL performance about "more" or "less"? From the title, you can tell that I'm going to argue that it's about "less". Here's the punchline: zero is maximum performance. Let's see where this philosophical blog post leads us.

content/book-4.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ aliases:
99
- /post/book-4/
1010
disqus_url: "https://hackmysql.com/post/book-4/"
1111
series: "Behind the Book"
12+
params:
13+
path: data
1214
---
1315

1416
Access patterns intrigue me because it seems that everyone knows what they are and talks about them, but there's also very little written about them—in MySQL literature, at least.

0 commit comments

Comments
 (0)