{"id":5440328,"date":"2023-04-11T12:27:29","date_gmt":"2023-04-11T10:27:29","guid":{"rendered":"https:\/\/wp-rocket.me\/?post_type=caching_hub&#038;p=5440328"},"modified":"2023-05-10T15:32:10","modified_gmt":"2023-05-10T13:32:10","slug":"object-caching","status":"publish","type":"caching_hub","link":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/","title":{"rendered":"What is Object Caching and How to Use It With WordPress"},"content":{"rendered":"<p>When it comes to caching, there are a lot of different types. There\u2019s browser caching and page caching, not to mention mobile and user caching. If you\u2019re using WP Rocket, you are no doubt already benefiting from these types of caching. But another one you\u2019ll want to add to the mix is <strong>object caching<\/strong>.<\/p><p>Object caching involves storing database queries and, when enabled on your WordPress site, it can help speed up PHP execution times, reduce the load on your database, and deliver content to your visitors faster.<\/p><p>In this post, we\u2019ll cover what object caching is and how it works with WordPress (including the built-in object caching that WordPress provides). We\u2019ll also look at a few different ways you can implement this type of caching on your site to improve its performance.<\/p><h2 class=\"wp-block-heading\">What is Caching?<\/h2><p>But first, let\u2019s look at what caching is generally to put object caching into context.<\/p><p>Caching is the process of storing frequently-accessed data temporarily in a cache so you can reuse it for subsequent requests.<\/p><p>When someone lands on your site, and you don\u2019t have caching enabled, their browser sends a request for the page to your server. Your server then processes the request, compiles the page, and then sends it back to the browser.<\/p><p>If you have a low traffic site, your server can sit back and relax, so to speak, since it only has to process and compile pages every now and again. But servers hosting large sites have their work cut out for them\u2014they have to work much harder to process and compile multiple pages per second as requests come in.<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"356\" src=\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg\" alt=\"how does caching work\" class=\"wp-image-923955\" srcset=\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg 800w, https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work-300x134.jpg 300w, https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work-768x342.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><figcaption class=\"wp-element-caption\">How a server work<\/figcaption><\/figure><p>This is where caching can help ease the load on your server. It stores a copy of each request and then the next time the same request comes it, it checks the cache and serves it from there. If there\u2019s no copy, the request is sent on to the server to be processed and compiled, and on its way back to the browser a copy is stored in cache.<\/p><p>The beauty of caching is that it saves your server from having to do more work than it has to, allowing it to handle more traffic than it other would. It also has the added benefit of delivering your content faster to users.<\/p><p>If you\u2019re interested to learn more about how caching works, check out <a href=\"https:\/\/wp-rocket.me\/blog\/caching-plugin-is-critical-to-your-wordpress-site\/\" target=\"_blank\" rel=\"noopener noreferrer\">Why a Caching Plugin is Critical to Your WordPress Site<\/a>.<\/p><h3 class=\"wp-block-heading\">Different Types of Caching<\/h3><p>There are two main types of caching: <strong>client-side caching<\/strong> and <strong>server-side caching<\/strong>.<\/p><p>There are many types of client-side caching, but the one you\u2019re probably most familiar with is <a href=\"https:\/\/wp-rocket.me\/blog\/browser-caching-explained-in-plain-english\/\" target=\"_blank\" rel=\"noopener noreferrer\">browser caching<\/a>. This is where the browser stores static web page content so the next time someone visits your site, the page is pulled from the cache on their computer instead of being downloaded again.<\/p><p>Object caching is a type of server-side caching. There are lots of types of server-side caching, but the important ones to know about include:<\/p><p><strong>1. Object caching.<\/strong> We\u2019ll go into this in more detail below, but object caching involves storing database queries so that the next time a piece of data is needed, it is delivered from cache without having to query the database.<\/p><p><strong>2. <a href=\"https:\/\/wp-rocket.me\/blog\/wordpress-page-caching-explained-in-plain-english\/\" target=\"_blank\" rel=\"noopener noreferrer\">Page caching<\/a>.<\/strong> Page caching involves storing the entire HTML of a page so that on subsequent views, the content\u2014including files and database queries\u2014can be generated and displayed without WordPress having to do it each time.<\/p><p><strong>3. <a href=\"https:\/\/docs.wp-rocket.me\/article\/673-what-is-opcache\" target=\"_blank\" rel=\"noopener noreferrer\">Opcode caching<\/a>.<\/strong> Opcode caching involves compiling PHP code between every request. For PHP code to execute, the PHP compiler has to compile the code first and then generate executable code for the server to execute. Opcode caches the already compiled code.<\/p><p><strong>4. <a href=\"https:\/\/wp-rocket.me\/blog\/best-content-delivery-networks-wordpress-2017\/\" target=\"_blank\" rel=\"noopener noreferrer\">CDN caching<\/a>.<\/strong> Content delivery networks (CDNs) using edge servers around the world to store static website files (i.e., CSS, JavaScript, and media files) for faster delivery to users who are geographically distant from the host server.<\/p><div id=\"om-olkrjzfbhlynbs54rv6z-holder\"><\/div>\n\t<script>(function (d, u, ac) {\n\t\t\tvar s = d.createElement('script')\n\t\t\ts.type = 'text\/javascript'\n\t\t\ts.src = 'https:\/\/a.omappapi.com\/app\/js\/api.min.js'\n\t\t\ts.async = true\n\t\t\ts.dataset.user = u\n\t\t\ts.dataset.campaign = ac\n\t\t\td.getElementsByTagName('head')[0].appendChild(s)\n\t\t})(document, 20440, 'olkrjzfbhlynbs54rv6z')<\/script><h2 class=\"wp-block-heading\">So What is Object Caching?<\/h2><p>Object caching involves storing database query results so that the next time a result is needed, it can be served from the cache without having to repeatedly query the database.<\/p><p>As a content management system, WordPress is naturally\u2014and heavily\u2014dependent on the database. As such, database efficiency is crucial to scaling WordPress.<\/p><p>If you run a high-traffic site and requests to your pages generate a large number of database queries, your server can quickly become overwhelmed, in turn negatively affecting your site\u2019s performance.<\/p><p>So when object caching is enabled on your site, it can help ease the load on your database and server and deliver queries faster.<\/p><h3 class=\"wp-block-heading\">What is WP_Object_Cache?<\/h3><p>WordPress has a built-in object cache called <a href=\"https:\/\/codex.wordpress.org\/Class_Reference\/WP_Object_Cache\" target=\"_blank\" rel=\"noopener noreferrer\">WP_Object_Cache<\/a>. Introduced in 2005, it provides a way of automatically storing any data from the database in PHP memory to prevent repeated queries.<\/p><p>However, this object cache only stores objects for a single page load\u2014it discards objects in cache at the end of the request, so they have to be rebuilt from scratch the next time the page is requested.<\/p><p>While this is a useful feature of WordPress, ensuring the database isn\u2019t queried multiple times during a single page load for similar query requests, it\u2019s not exactly efficient.<\/p><p>This is where persistent caching solutions can help. Object caching is more powerful when it can be used to cache objects between multiple page loads.<\/p><p>External persistent object caching solutions like Redis and Memcached make it possible to persist the object cache between requests. This helps speed up the delivery of database queries while further easing the workload of your server.<\/p><h3 class=\"wp-block-heading\">What are Redis and Memcached?<\/h3><p>Persistent object caching is a must if you\u2019re looking to scale. Without it, your site\u2019s performance will slow down as its complexity and traffic increase. The same goes for logged in users and dynamic pages\u2014object caching can help deliver a better and faster user experience.<\/p><p>There are two popular persistent object caching tools worth checking out: <strong>Redis<\/strong> and <strong>Memcached<\/strong>.<\/p><p>Both of these tools are fast and powerful in-memory data stores that can reduce the load on your site\u2019s MySQL database, while also decreasing the response time of your site and bolstering your site\u2019s ability to scale and handle increased traffic.<\/p><p>Memcached has long been a popular cache choice, but Redis can do everything Memcached can, and with a much larger feature set. Plus, it\u2019s more popular and better supported.<\/p><p>For an in-depth look at the features, pros and cons of Redis and Memcached, <a href=\"https:\/\/stackoverflow.com\/questions\/10558465\/memcached-vs-redis\" target=\"_blank\" rel=\"noopener noreferrer\">this Stack Overflow thread<\/a> has some great general information about both tools.<\/p><h2 class=\"wp-block-heading\">How to Use Object Caching with WordPress<\/h2><p>The object caching built-in to WordPress is already working on your site by default, so you don\u2019t need to do anything to enable it.<\/p><p>But if you want to take your object caching to the next level so your database queries are cached persistently between page loads, there are a few options available that are straightforward to implement.<\/p><h3 class=\"wp-block-heading\">1. Use Redis<\/h3><p>For Redis-powered object caching, you can\u2019t go past the free plugins available at <a href=\"https:\/\/wordpress.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress.org<\/a>.<\/p><p>With more than 30,000 active installs, the most popular option is <a href=\"https:\/\/wordpress.org\/plugins\/redis-cache\/\" target=\"_blank\" rel=\"noopener noreferrer\">Redis Object Cache<\/a>. It supports Predis, PhpRedis (PECL), HHVM, replication, clustering and WP-CLI.<\/p><p>Before using this plugin, you\u2019ll need to check that your site is using a PHP environment with the required PHP Redis extension and a working Redis server.<\/p><p>If you\u2019re good to go, this plugin is super simple to install\u2014just activate the plugin, go to <strong>Settings &gt; Redis<\/strong> and click \u201cEnable Object Cache.\u201d<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"821\" height=\"436\" src=\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/redis-object-cache-plugin.png\" alt=\"Redis Object Cache\" class=\"wp-image-923961\" srcset=\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/redis-object-cache-plugin.png 821w, https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/redis-object-cache-plugin-300x159.png 300w, https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/redis-object-cache-plugin-768x408.png 768w\" sizes=\"(max-width: 821px) 100vw, 821px\" \/><\/figure><p>If you run into any problems, again, you\u2019ll need to check with your web host whether the server your site is hosted on is set up for Redis. Since Cloudways hosts my test site, I had to log-in to the dashboard for my site and enabled Redis as a package before enabling object using in the Redis Object Cache plugin.<\/p><p>Alternatively, another option you might want to try is <a href=\"https:\/\/wordpress.org\/plugins\/wp-redis\/\" target=\"_blank\" rel=\"noopener noreferrer\">WP Redis<\/a>, which is a little more involved to set up. Brought to you by the folks at web host Pantheon, this plugin requires that you create a file called object-cache.php and add it to your wp-content folder, and also edit your wp-config.php folder (but only if you\u2019re not a Pantheon user).<\/p><p>If WP-CLI is a big part of your development workflow, you might find it more convenient to use WP Redis since it comes with a variety of commands.<\/p><h3 class=\"wp-block-heading\">2. Ask Your Host<\/h3><p>If you\u2019re on managed WordPress hosting, your host probably offers object caching via Redis. So check out your host\u2019s documentation for information on how to enable object caching, or get in touch to check if it\u2019s available.<\/p><p>Many hosts offer Redis as a feature or add-on\u2014Pantheon, Kinsta and Cloudways, just to name a few.<\/p><p>If you\u2019re on shared hosting, it\u2019s less likely that it will be available for free. In this case, if object caching isn\u2019t available to you, you might want to consider upgrading your hosting package or switching hosts.<\/p><h2 class=\"wp-block-heading\">Wrapping Up<\/h2><p>Object caching provides a relatively simple solution for improving the performance of your database, especially given the fact that WordPress performance is heavily dependent on the speed of your database.<\/p><p>With solutions like Redis, you can quickly enable persistent object caching on your site, whether it\u2019s via a plugin or simply asking your host to activate it.<\/p>","protected":false},"excerpt":{"rendered":"<p>When it comes to caching, there are a lot of different types. There\u2019s browser caching and page caching, not to mention mobile and user caching. If you\u2019re using WP&nbsp;Rocket, you are no doubt already benefiting from these types of caching. But another one you\u2019ll want to add to the mix is object caching. Object [&hellip;]<\/p>\n","protected":false},"template":"","class_list":["post-5440328","caching_hub","type-caching_hub","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Object Caching and How to Use It With WordPress<\/title>\n<meta name=\"description\" content=\"Object caching can speed up the performance of your database\u2014a must if you&#039;re looking to scale WordPress. Learn how to use object caching with our guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Object Caching and How to Use It With WordPress\" \/>\n<meta property=\"og:description\" content=\"Object caching can speed up the performance of your database\u2014a must if you&#039;re looking to scale WordPress. Learn how to use object caching with our guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/\" \/>\n<meta property=\"og:site_name\" content=\"WP Rocket\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/pages\/WP-Rocket\/631942253526829\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-10T13:32:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@wp_rocket\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/\",\"url\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/\",\"name\":\"What is Object Caching and How to Use It With WordPress\",\"isPartOf\":{\"@id\":\"https:\/\/wp-rocket.me\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg\",\"datePublished\":\"2023-04-11T10:27:29+00:00\",\"dateModified\":\"2023-05-10T13:32:10+00:00\",\"description\":\"Object caching can speed up the performance of your database\u2014a must if you're looking to scale WordPress. Learn how to use object caching with our guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#primaryimage\",\"url\":\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg\",\"contentUrl\":\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg\",\"width\":800,\"height\":356,\"caption\":\"how does caching work\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wp-rocket.me\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress Cache\",\"item\":\"https:\/\/wp-rocket.me\/wordpress-cache\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is Object Caching and How to Use It With WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wp-rocket.me\/#website\",\"url\":\"https:\/\/wp-rocket.me\/\",\"name\":\"WP Rocket\",\"description\":\"Plugin d&#039;optimisation de sites WordPress\",\"publisher\":{\"@id\":\"https:\/\/wp-rocket.me\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wp-rocket.me\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/wp-rocket.me\/#organization\",\"name\":\"WP Rocket\",\"url\":\"https:\/\/wp-rocket.me\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wp-rocket.me\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/logo-wp-rocket-paypal-2.png\",\"contentUrl\":\"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/logo-wp-rocket-paypal-2.png\",\"width\":150,\"height\":41,\"caption\":\"WP Rocket\"},\"image\":{\"@id\":\"https:\/\/wp-rocket.me\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/pages\/WP-Rocket\/631942253526829\",\"https:\/\/x.com\/wp_rocket\",\"https:\/\/www.youtube.com\/channel\/UC1ozThXHd1IWIZ5wkshgp_Q\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Object Caching and How to Use It With WordPress","description":"Object caching can speed up the performance of your database\u2014a must if you're looking to scale WordPress. Learn how to use object caching with our guide.","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:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/","og_locale":"en_US","og_type":"article","og_title":"What is Object Caching and How to Use It With WordPress","og_description":"Object caching can speed up the performance of your database\u2014a must if you're looking to scale WordPress. Learn how to use object caching with our guide.","og_url":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/","og_site_name":"WP Rocket","article_publisher":"https:\/\/www.facebook.com\/pages\/WP-Rocket\/631942253526829","article_modified_time":"2023-05-10T13:32:10+00:00","og_image":[{"url":"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg"}],"twitter_card":"summary_large_image","twitter_site":"@wp_rocket","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/","url":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/","name":"What is Object Caching and How to Use It With WordPress","isPartOf":{"@id":"https:\/\/wp-rocket.me\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#primaryimage"},"image":{"@id":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#primaryimage"},"thumbnailUrl":"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg","datePublished":"2023-04-11T10:27:29+00:00","dateModified":"2023-05-10T13:32:10+00:00","description":"Object caching can speed up the performance of your database\u2014a must if you're looking to scale WordPress. Learn how to use object caching with our guide.","breadcrumb":{"@id":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#primaryimage","url":"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg","contentUrl":"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/how-servers-work.jpg","width":800,"height":356,"caption":"how does caching work"},{"@type":"BreadcrumbList","@id":"https:\/\/wp-rocket.me\/wordpress-cache\/object-caching\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wp-rocket.me"},{"@type":"ListItem","position":2,"name":"WordPress Cache","item":"https:\/\/wp-rocket.me\/wordpress-cache\/"},{"@type":"ListItem","position":3,"name":"What is Object Caching and How to Use It With WordPress"}]},{"@type":"WebSite","@id":"https:\/\/wp-rocket.me\/#website","url":"https:\/\/wp-rocket.me\/","name":"WP Rocket","description":"Plugin d&#039;optimisation de sites WordPress","publisher":{"@id":"https:\/\/wp-rocket.me\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wp-rocket.me\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wp-rocket.me\/#organization","name":"WP Rocket","url":"https:\/\/wp-rocket.me\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wp-rocket.me\/#\/schema\/logo\/image\/","url":"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/logo-wp-rocket-paypal-2.png","contentUrl":"https:\/\/wp-rocket.me\/wp-content\/uploads\/1\/logo-wp-rocket-paypal-2.png","width":150,"height":41,"caption":"WP Rocket"},"image":{"@id":"https:\/\/wp-rocket.me\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/pages\/WP-Rocket\/631942253526829","https:\/\/x.com\/wp_rocket","https:\/\/www.youtube.com\/channel\/UC1ozThXHd1IWIZ5wkshgp_Q"]}]}},"_links":{"self":[{"href":"https:\/\/wp-rocket.me\/wp-json\/wp\/v2\/caching_hub\/5440328"}],"collection":[{"href":"https:\/\/wp-rocket.me\/wp-json\/wp\/v2\/caching_hub"}],"about":[{"href":"https:\/\/wp-rocket.me\/wp-json\/wp\/v2\/types\/caching_hub"}],"wp:attachment":[{"href":"https:\/\/wp-rocket.me\/wp-json\/wp\/v2\/media?parent=5440328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}