{"id":486,"date":"2019-10-21T10:00:37","date_gmt":"2019-10-21T03:00:37","guid":{"rendered":"https:\/\/mariadbtutorial.com\/?page_id=486"},"modified":"2020-04-11T23:24:00","modified_gmt":"2020-04-11T16:24:00","slug":"mariadb-storage-engines","status":"publish","type":"page","link":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/","title":{"rendered":"MariaDB Storage Engines"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.<\/p>\n\n\n\n<p>Storage engines handle data at the physical level. Storage engines are designed to efficiently manage data files, the data, and the index caches.<\/p>\n\n\n\n<p>To show all available storage engines in a MariaDB server, you use the show engines statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">show<\/span> <span class=\"hljs-keyword\">engines<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Or you can query the supported storage engines from the <code>information_schema.engines<\/code> table:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">select<\/span> *\n<span class=\"hljs-keyword\">from<\/span> information_schema.engines;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"755\" height=\"179\" src=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png\" alt=\"MariaDB Storage Engines\" class=\"wp-image-489\" srcset=\"https:\/\/www.mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png 755w, https:\/\/www.mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines-300x71.png 300w\" sizes=\"auto, (max-width: 755px) 100vw, 755px\" \/><\/figure>\n\n\n\n<p>The output includes a <code>support<\/code> column that indicates whether the engine is available.<\/p>\n\n\n\n<p>When you <a href=\"https:\/\/mariadbtutorial.com\/mariadb-basics\/mariadb-create-table\/\">create a new table<\/a>, you need to specify a storage engine. If you don&#8217;t, MariaDB will use a default storage engine for the table.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">create<\/span> <span class=\"hljs-keyword\">table<\/span> table_name(\n    ...\n)<span class=\"hljs-keyword\">engine<\/span>=storage_engine;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>To show the current storage engine, you use the <code>storage_engine<\/code> system variable:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">select<\/span> @@global.storage_engine;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"137\" height=\"35\" src=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines-Default-Storage-Engine.png\" alt=\"MariaDB Storage Engines - Default Storage Engine\" class=\"wp-image-490\"\/><\/figure>\n\n\n\n<p>MariaDB has made the InnoDB as the default storage engine since version 5.5. In the earlier version, it used Aria as the default storage engine.<\/p>\n\n\n\n<p>If you want to find the storage engine of a table, you can query the <code>engine<\/code> column from the table <code>information_schema.tables<\/code>:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">select<\/span> \n    table_name,\n    <span class=\"hljs-keyword\">engine<\/span> \n<span class=\"hljs-keyword\">from<\/span> \n    information_schema.tables\n<span class=\"hljs-keyword\">where<\/span> \n    table_schema=<span class=\"hljs-string\">'nation'<\/span>\n    table_name = <span class=\"hljs-string\">'countries'<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\">InnoDB storage engine<\/h2>\n\n\n\n<p>InnoDB is a high-performance, general-purpose storage engine that supports transactions with savepoints, XA transactions, and foreign keys. Savepoints are points in the middle of a transaction to which can be restored to if necessary. XA is a special type of transaction designed for transactions that may involve multiple resources, not only SQL databases.<\/p>\n\n\n\n<p>In most cases, the performance of InnoDB is better than other engines, therefore, it is a default storage engine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">TokuDB storage engine<\/h2>\n\n\n\n<p>Similar to InnoDB, the TokuDB supports transactions with savepoints and XA transactions. However, it does not support foreign keys and full-text indexes.<\/p>\n\n\n\n<p>Unlike the InnoDB, the TokuDB supports a special structure for indexes called the factual trees. In addition, another important feature of TokuDB is data compression.<\/p>\n\n\n\n<p>The fractal trees and data compression make TokuDB suitable for datasets that are too big to store entirely in memory. In this situation<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">MyISAM and Aria storage engines<\/h2>\n\n\n\n<p>MyISAM was the default storage engine for MySQL and MariaDB before version 5.5. MyISAM is a simple storage engine that is optimized for read-heavy, not write-heavy operations. MyISAM is good for websites and reporting systems which require heavy-read workloads.<\/p>\n\n\n\n<p>Aria is MyISAM&#8217;s successor. Aria uses logs that enable data recovery after crashes. Aria is better than MyISAM is the environments that have concurrency.<\/p>\n\n\n\n<p>Note that both MyISAM and Aria do not support transactions and foreign keys. Each statement in Aria is considered as a transaction.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">MyRocks storage engine<\/h2>\n\n\n\n<p>MyRocks storage engine is based on RocksDB which was originally developed by Facebook. MyRocks storage engine is good for workloads that require high compression and I\/O efficiency.<\/p>\n\n\n\n<p>MyRocks storage engine uses a Log Structured Merge (LSM) architecture that has better compression than the B-tree used by InnoDB. It is a write-optimized and has faster data loading and replication.<\/p>\n\n\n\n<p>MyRocks storge engine supports read committed and repeatable read isolated levels. However, it doesn&#8217;t support serializable.<\/p>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful ?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"486\"\n\t\t\t\tdata-post-url=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\"\n\t\t\t\tdata-post-title=\"MariaDB Storage Engines\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"486\"\n\t\t\t\tdata-post-url=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\"\n\t\t\t\tdata-post-title=\"MariaDB Storage Engines\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":95,"menu_order":31,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-486","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>An Introduction to MariaDB Storage Engines<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"An Introduction to MariaDB Storage Engines\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\" \/>\n<meta property=\"og:site_name\" content=\"MariaDB Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-11T16:24:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\",\"url\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\",\"name\":\"An Introduction to MariaDB Storage Engines\",\"isPartOf\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png\",\"datePublished\":\"2019-10-21T03:00:37+00:00\",\"dateModified\":\"2020-04-11T16:24:00+00:00\",\"description\":\"In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#primaryimage\",\"url\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png\",\"contentUrl\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mariadbtutorial.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MariaDB Basics\",\"item\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MariaDB Storage Engines\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/#website\",\"url\":\"https:\/\/www.mariadbtutorial.com\/\",\"name\":\"MariaDB Tutorial\",\"description\":\"MariaDB Tutorial\",\"publisher\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mariadbtutorial.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/#organization\",\"name\":\"MariaDB Tutorial\",\"url\":\"https:\/\/www.mariadbtutorial.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png\",\"contentUrl\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png\",\"width\":512,\"height\":592,\"caption\":\"MariaDB Tutorial\"},\"image\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"An Introduction to MariaDB Storage Engines","description":"In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/","og_locale":"en_US","og_type":"article","og_title":"An Introduction to MariaDB Storage Engines","og_description":"In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.","og_url":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/","og_site_name":"MariaDB Tutorial","article_modified_time":"2020-04-11T16:24:00+00:00","og_image":[{"url":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/","url":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/","name":"An Introduction to MariaDB Storage Engines","isPartOf":{"@id":"https:\/\/www.mariadbtutorial.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#primaryimage"},"image":{"@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#primaryimage"},"thumbnailUrl":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png","datePublished":"2019-10-21T03:00:37+00:00","dateModified":"2020-04-11T16:24:00+00:00","description":"In this tutorial, you will learn about the MariaDB storage engines including InnoDB, TokuDB, MyISAM, Aria, and MyRocks.","breadcrumb":{"@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#primaryimage","url":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png","contentUrl":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Storage-Engines.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-storage-engines\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mariadbtutorial.com\/"},{"@type":"ListItem","position":2,"name":"MariaDB Basics","item":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/"},{"@type":"ListItem","position":3,"name":"MariaDB Storage Engines"}]},{"@type":"WebSite","@id":"https:\/\/www.mariadbtutorial.com\/#website","url":"https:\/\/www.mariadbtutorial.com\/","name":"MariaDB Tutorial","description":"MariaDB Tutorial","publisher":{"@id":"https:\/\/www.mariadbtutorial.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mariadbtutorial.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mariadbtutorial.com\/#organization","name":"MariaDB Tutorial","url":"https:\/\/www.mariadbtutorial.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/","url":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png","contentUrl":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png","width":512,"height":592,"caption":"MariaDB Tutorial"},"image":{"@id":"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/486","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/comments?post=486"}],"version-history":[{"count":5,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/486\/revisions"}],"predecessor-version":[{"id":730,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/486\/revisions\/730"}],"up":[{"embeddable":true,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/95"}],"wp:attachment":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/media?parent=486"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}