From c431cf56e73d237e6d2aebff2feb66a042cb2321 Mon Sep 17 00:00:00 2001 From: Kenny Gryp Date: Wed, 16 Nov 2016 12:01:07 +0100 Subject: [PATCH 1/5] Added link to InnoDB Sorted Index Builds --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index b5f8481..2400550 100644 --- a/index.html +++ b/index.html @@ -62,7 +62,7 @@

InnoDB

  • Several optimizations for high performance temporary tables [1 2 3 4 5]
  • ALTER TABLE RENAME INDEX only requires meta-data change [1]
  • Increasing VARCHAR size only requires meta-data change [1]
  • -
  • ALTER TABLE performance improved [1]
  • +
  • ALTER TABLE performance improved [1 2]
  • Multiple page_cleaner threads [1]
  • Optimized buffer pool flushing [1]
  • From 0e16b23c0d5b4303cdb4792cefbcb9635e1d07ea Mon Sep 17 00:00:00 2001 From: Kenny Gryp Date: Fri, 24 Feb 2017 23:01:03 +0100 Subject: [PATCH 2/5] mention page cleaner priority --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index b5f8481..c90bc2a 100644 --- a/index.html +++ b/index.html @@ -90,6 +90,7 @@

    InnoDB

  • InnoDB now drops tables in a background thread [1]
  • InnoDB tmpdir is now configurable [1]
  • InnoDB MERGE_THRESHOLD is now configurable [1]
  • +
  • InnoDB page_cleaner threads get priority using setpriority()[1]
  • Defaults change: innodb_file_format=Barracuda
  • Defaults change: innodb_large_prefix=1
  • Defaults change: innodb_page_cleaners=4
  • From 8090829b1969dd549779d3129beb04fc39bf0eea Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Wed, 30 Jan 2019 18:18:22 +0100 Subject: [PATCH 3/5] Added mysql 8 --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 7ab6e6d..6808e02 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,8 @@
    +Check out the complete list for MySQL 8.0! +

    There are over 150 new features in MySQL 5.7.

    From cbd890bfa83658fadae68ff63bff4d1181054f80 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Wed, 30 Jan 2019 18:21:32 +0100 Subject: [PATCH 4/5] Update _base.scss --- _sass/_base.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_sass/_base.scss b/_sass/_base.scss index 13ba773..4d54f6b 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -243,4 +243,9 @@ pre { .translations li { display: inline; -} \ No newline at end of file +} + +.mysql8 { + font-weight: bold; + font-size: 24px; +} From 2b0bf76fd6c72681a1d1d6f1a87c3a9670192184 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Wed, 30 Jan 2019 18:22:02 +0100 Subject: [PATCH 5/5] Update index.html --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 6808e02..3652e26 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,9 @@