{"id":5440416,"date":"2023-04-11T12:29:01","date_gmt":"2023-04-11T10:29:01","guid":{"rendered":"https:\/\/wp-rocket.me\/?post_type=caching_hub&#038;p=5440416"},"modified":"2023-05-10T15:41:43","modified_gmt":"2023-05-10T13:41:43","slug":"redis-object-caching","status":"publish","type":"caching_hub","link":"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/","title":{"rendered":"What is Redis Object Caching and How to Use It for Your WordPress Site"},"content":{"rendered":"<p>Redis and object caching can vastly speed up your WordPress page load times with each subsequent visit. It\u2019s also <a href=\"https:\/\/redis.io\/topics\/whos-using-redis\">used by many popular websites<\/a> like GitHub, Pinterest, StackOverflow and many others.<br><\/p><p>Remote Dictionary Server <a href=\"https:\/\/redis.io\/topics\/introduction\">(Redis) \u201cis an open source, in-memory data structure store<\/a> used as a database, cache, and message broker.\u201d It\u2019s a key-value store which is often called a NoSQL database.<br><\/p><p>It\u2019s best used on dynamic websites such as WordPress sites when it comes to object caching, which caches repeating query results.<br><\/p><p>Today, I\u2019ll share more detail on object caching, its benefits, and how to install and use Redis for object caching on WordPress websites.<\/p><h2 class=\"wp-block-heading\">A Quick Refresher: What is Caching?<\/h2><p>If a web page is cached, it means that elements of that page such as images, stylesheets, and other content is loaded once, then stored in what\u2019s called a \u201ccache.\u201d<br><\/p><p>It memorizes what was loaded, creates a static version of it, then can serve that version much faster the next time that page is loaded.<br><\/p><p>The result is faster page load times and less of your server\u2019s resources being used.<br><\/p><p>Check out <a href=\"https:\/\/wp-rocket.me\/blog\/wordpress-page-caching-explained-in-plain-english\/\">Caching for WordPress, Explained in Plain English<\/a> for further details.<\/p><h2 class=\"wp-block-heading\">What is Object Caching?<\/h2><p>Object caching is a type of server-side caching. This means the caching is administered at the server level, and isn\u2019t controlled by the end user or a system they use for caching.<br><\/p><p>Object caching stores database query results that have been loaded. Then, it serves them up faster the next time they\u2019re requested so the database doesn\u2019t have to be queried again.<br><\/p><p><a href=\"https:\/\/codex.wordpress.org\/Class_Reference\/WP_Object_Cache\">WordPress also has object caching built-in<\/a> with the WP_Object_Cache class.<br><\/p><p>The trouble is, the inherent object caching WordPress has isn\u2019t persistent by default. This means that cached data is only stored for as long as the request to the database lasts, which is ultimately no more than for one page load, and inefficient.<br><\/p><p>If you were to install and use a persistent object caching solution such as \u2013 ehem \u2013 Redis, for example, data could be cached for all subsequent page loads, giving your database more of a break..<br><\/p><p>For details, check out <a href=\"https:\/\/wp-rocket.me\/blog\/object-caching-use-wordpress\/\">What is Object Caching and How to Use It With WordPress<\/a>.<\/p><h3 class=\"wp-block-heading\">Who Needs Object Caching?<\/h3><p>If your WordPress site is static and all it needs to load are a stylesheet and some images, for example, you\u2019re not going to see any difference in you use object caching.<br><\/p><p>Conversely, a dynamic site loads tons of data across pages that are stored in your database such as user details, taxonomies, links, and other similar data.<br><\/p><p>As previously mentioned, every time a page loads that content, it sends one (or often several!) database queries. If you use object caching, that data is stored in the cache and it\u2019s ready to be displayed on the page in the flashes of flashes.<br><\/p><p>Your database can be queried much less often and retrieving content from the cache is a lot faster than sending queries to the database.<br><\/p><p>This results is page loading times that are a lot faster. Your server\u2019s resources are also used more efficiently. This is an especially crucial factor if you\u2019re looking to scale your WordPress website.<br><\/p><p>So, if your site gets a lot of traffic or you\u2019re expecting it will soon, and it\u2019s dynamic, you should consider using object caching.<\/p><h2 class=\"wp-block-heading\">Memcached vs Redis: What&#8217;s the Difference?<\/h2><p>Memcached is another persistent object caching WordPress option that you could use instead of Redis. It\u2019s a popular option and works well, though, it has a smaller set of features when compared to Redis.<br><\/p><p>This is why Redis is a far more popular option. But, that doesn\u2019t necessarily mean you should completely write-off Memcached, especially when it\u2019s used by top sites such as Facebook, Twitter, YouTube, and more.<br><\/p><p>Weigh your options by considering the features you need to help you decide which one is right for your WordPress site since each case is different.<br><\/p><p>For details, check out <a href=\"https:\/\/wp-rocket.me\/blog\/memcached-what-is-it-how-to-use-it\/\">Memcached: What Is It And How To Use It On Your WordPress Site?<\/a><\/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\">Using Redis Object Caching on WordPress<\/h2><p>To use Redis for object caching on WordPress sites, it starts with installing and configuring Redis, then installing a <a href=\"https:\/\/github.com\/phpredis\/phpredis\">PHP extension<\/a>, followed by the <a href=\"https:\/\/wordpress.org\/plugins\/redis-cache\/\">Redis Object Cache plugin<\/a>.<br><\/p><p>Many managed WordPress hosting solutions already offer Redis object caching so you can check with your host to see if it\u2019s an option. They may have a quick or one-click installation available.<br><\/p><p>If you find you need to install it yourself, you can do so manually.<br><\/p><p>Either way, <a href=\"https:\/\/redis.io\/topics\/introduction\">it\u2019s recommended you install Redis<\/a> on a Linux server. While there\u2019s no official support for Windows, there\u2019s a <a href=\"https:\/\/github.com\/MicrosoftArchive\/redis\">Win-64 port of Redis<\/a> that has been developed by Microsoft.<br><\/p><p>If you decided you want to manually install Redis for object caching on your Linux server, there are a few other prerequisites:<br><\/p><ul class=\"wp-block-list\"><li>Root access to your Linux server<\/li>\n\n<li>Ability to install Redis through SSH access<\/li>\n\n<li>WordPress installed<\/li>\n\n<li>PHP version 7.0 or higher<\/li>\n\n<li>Server has both <a href=\"https:\/\/www.gnu.org\/software\/wget\/\">Wget<\/a> and <a href=\"https:\/\/www.sudo.ws\">Sudo<\/a> installed<\/li>\n\n<li>Text editor is installed on your server such as <a href=\"https:\/\/www.nano-editor.org\">Nano<\/a><\/li>\n\n<li><a href=\"https:\/\/www.php.net\/manual\/en\/install.pecl.phpize.php\">Phpize<\/a> is installed to prepare PHP extension for compiling<\/li><\/ul><p>Be sure to also back up your entire site in case something goes wrong and you need to restore it. It\u2019s also a good idea to test Redis before deploying it on a production server.<\/p><h3 class=\"wp-block-heading\">1. Installing Redis for Object Caching<\/h3><p>While you could use the package manager of your specific Linux distribution such as <em>apt<\/em> or <em>yum<\/em>, it may not always be up-to-date with the latest version so it\u2019s recommended you use <em>wget<\/em> with a link to the master archive.<br><\/p><p>On the command line, enter the following to install the latest stable release:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/1a2c744561d41277676dcdd3c92ed670.js\"><\/script><p>Next, type the line below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/5b2e296c00ed4c87172aa287f035377d.js\"><\/script><p>Then, follow it with this:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/3756f1ed163549400a66cb3f7aa98cc1.js\"><\/script><p>Finally, enter the following:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/ec9f63fe85c88fd9831cad04c2c9b671.js\"><\/script><h3 class=\"wp-block-heading\">2. Configuring Redis as a Cache<\/h3><p>It\u2019s necessary to edit the configuration file now that Redis is installed to, well, configure it to use it specifically for object caching.<br><\/p><p>To get to the configuration file, use the line below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/2244ffe4b2aa81e7c767fa1c35d1d504.js\"><\/script><p>Note that \u201cnano\u201d is the command to access the file using the <a href=\"https:\/\/www.nano-editor.org\">Nano editor<\/a>. Replace this with the applicable command if you have a different editor installed.<br><\/p><p>Find where it says the following:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/bed431501a1c28216c25694439e17154.js\"><\/script><p>Then, replace it with this:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/76515f1851a626362129ad4a54d72529.js\"><\/script><p>Keep in mind that you can change \u201c128\u201d to suit your needs.<br><\/p><p>For example, 50 MB is suitable for many WordPress installations, but if you run a high-traffic site, 128 MB or 256 MB may be a better fit. Use what works best for your site.<\/p><h3 class=\"wp-block-heading\">3. Edit the <em>wp-config.php<\/em> File<\/h3><p>By default, Redis is now set up to have any stored data accessible to all apps on the server. Since this is a security risk, it\u2019s important to edit the <em>wp-config.php<\/em> WordPress core file to include a cache key salt.<br><\/p><p>Even if you only plan on having WordPress on your server, it\u2019s still crucial not to skip this step in case you decide to install Multisite or include other apps on your server in the future.<br><\/p><p>Open the <em>wp-config.php<\/em> file and above the \u201chappy blogging\u201d line, add the following, then save the file to your server:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/489a0907ce8d092e7e6cfd864a671f2e.js\"><\/script><p>Don\u2019t forget to replace \u201cexample.com\u201d with whatever you want. It doesn\u2019t have to be your site\u2019s domain, but be sure it\u2019s unique.<br><\/p><p>You can randomly generate a key value by using a free tool like <a href=\"https:\/\/randomkeygen.com\">Random Key Gen<\/a>, or <a href=\"https:\/\/keygen.io\/\">KeyGen.io<\/a>. Be sure to safeguard it like you would your passwords.<\/p><h3 class=\"wp-block-heading\">4. Installing a PHP Extension<\/h3><p>It\u2019s also essential to let WordPress contact the Redis key-value store so you can enable object caching. To do this, you need to install a PHP extension such as <a href=\"https:\/\/github.com\/phpredis\/phpredis\">PHP Redis<\/a>.<br><\/p><p>Go back to the command line and enter the following:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/1f7cc5a05d80cc80858b9a2e466d0b9d.js\"><\/script><p>Follow it with the line below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/8cdecc1c9b7a72473e6529d95ae3ebfe.js\"><\/script><p>Then, this command:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/e4064c9933440ccd83c8540a6b37a5f5.js\"><\/script><p>You now have the source code downloaded and extracted.<br><\/p><p>To install it, enter this:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/449add3cb595aa622ccf70548e750405.js\"><\/script><p>Then, type the line below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/875ebbe9e47e9c0a46daace16773ef8d.js\"><\/script><p>Follow it with the word below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/ca1f6dda92a31309639d97ac007c2352.js\"><\/script><p>Also, enter the command below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/c078540661e4e3bca284bc73d8f60686.js\"><\/script><p>Now that PHP Redis is installed, you need to create a new INI file. You can do this with the line below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/5e374c82b4378004a2de7a3be6bc6655.js\"><\/script><p>Be sure to replace the \u201cx\u201d in \u201c7.x\u201d to reflect the version of PHP 7 you have installed.<br><\/p><p>Keep in mind that if you\u2019re not using Apache, the file path will need to be updated to reflect the file hierarchy you have on your server.<\/p><h3 class=\"wp-block-heading\">5. Restart Redis and PHP<\/h3><p>It\u2019s critical you restart PHP and Redis to apply the changes you made above.<br><\/p><p>You can restart Redis by entering the command below:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/6f0c2a8b0d68372ac6f4bb1a95caa0f2.js\"><\/script><p>Then, restart PHP with this:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/a0a6d996d5d553aff58087cffc6c2f2b.js\"><\/script><p>Note that if you\u2019re not using an Apache server, use the <a href=\"https:\/\/www.cyberciti.biz\/faq\/unix-linux-restart-php-service-command\/\">PHP restart command<\/a> that applies to you.<\/p><h3 class=\"wp-block-heading\">6. Verify Redis is Working<\/h3><p>Now that Redis is installed, it\u2019s time to check that it\u2019s working properly by running the following command:<\/p><script src=\"https:\/\/gist.github.com\/jennimckinnon\/f68c801a950147126626f9d4ccfb0c0e.js\"><\/script><p>If you see the \u201cPONG\u201d response, Redis is set up and working.<\/p><h3 class=\"wp-block-heading\">7. Install and Activate the Redis Object Caching Plugin<\/h3><p>Next, install the <a href=\"https:\/\/wordpress.org\/plugins\/redis-cache\/\">Redis Object Caching plugin<\/a>. Now that you have finished the ground work, it installs like most other plugins.<br><\/p><p>For details, check out <a href=\"https:\/\/codex.wordpress.org\/Managing_Plugins#Installing_Plugins\">Installing Plugins<\/a> in the WordPress Codex.<\/p><h3 class=\"wp-block-heading\">WP Rocket and Redis<\/h3><p>While WP Rocket doesn\u2019t have Redis object caching built-in since its focus is on page caching, it\u2019s still compatible. You can certainly use WP Rocket at the same time as you use Redis.<br><br><strong>Boost the performance of your site with Redis + WP Rocket:<\/strong> <a href=\"https:\/\/wp-rocket.me\/pricing\/\">Get WP Rocket today!<\/a><\/p><h2 class=\"wp-block-heading\">Wrapping Up<\/h2><p>Object caching can increase your WordPress site\u2019s page load speed drastically, and you can make it happen with Redis. It takes some configuration, but if you follow the steps above, you\u2019ll be set up and ready to go.<\/p>","protected":false},"excerpt":{"rendered":"<p>Redis and object caching can vastly speed up your WordPress page load times with each subsequent visit. It\u2019s also used by many popular websites like GitHub, Pinterest, StackOverflow and many others. Remote Dictionary Server (Redis) \u201cis an open source, in-memory data structure store used as a database, cache, and message broker.\u201d It\u2019s a key-value store [&hellip;]<\/p>\n","protected":false},"template":"","class_list":["post-5440416","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 Redis Object Caching and How to Use It for Your WordPress Site<\/title>\n<meta name=\"description\" content=\"Redis object caching can vastly speed up your WordPress page load times. It\u2019s an incredibly popular option: here\u2019s how to use it and set it up.\" \/>\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\/redis-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 Redis Object Caching and How to Use It for Your WordPress Site\" \/>\n<meta property=\"og:description\" content=\"Redis object caching can vastly speed up your WordPress page load times. It\u2019s an incredibly popular option: here\u2019s how to use it and set it up.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wp-rocket.me\/wordpress-cache\/redis-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:41:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wp-rocket.me\/wp-content\/uploads\/2024\/10\/1200x800-Featured-Image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2048\" \/>\n\t<meta property=\"og:image:height\" content=\"1365\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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\/redis-object-caching\/\",\"url\":\"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/\",\"name\":\"What is Redis Object Caching and How to Use It for Your WordPress Site\",\"isPartOf\":{\"@id\":\"https:\/\/wp-rocket.me\/#website\"},\"datePublished\":\"2023-04-11T10:29:01+00:00\",\"dateModified\":\"2023-05-10T13:41:43+00:00\",\"description\":\"Redis object caching can vastly speed up your WordPress page load times. It\u2019s an incredibly popular option: here\u2019s how to use it and set it up.\",\"breadcrumb\":{\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wp-rocket.me\/wordpress-cache\/redis-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 Redis Object Caching and How to Use It for Your WordPress Site\"}]},{\"@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 Redis Object Caching and How to Use It for Your WordPress Site","description":"Redis object caching can vastly speed up your WordPress page load times. It\u2019s an incredibly popular option: here\u2019s how to use it and set it up.","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\/redis-object-caching\/","og_locale":"en_US","og_type":"article","og_title":"What is Redis Object Caching and How to Use It for Your WordPress Site","og_description":"Redis object caching can vastly speed up your WordPress page load times. It\u2019s an incredibly popular option: here\u2019s how to use it and set it up.","og_url":"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/","og_site_name":"WP Rocket","article_publisher":"https:\/\/www.facebook.com\/pages\/WP-Rocket\/631942253526829","article_modified_time":"2023-05-10T13:41:43+00:00","og_image":[{"width":2048,"height":1365,"url":"https:\/\/wp-rocket.me\/wp-content\/uploads\/2024\/10\/1200x800-Featured-Image.png","type":"image\/png"}],"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\/redis-object-caching\/","url":"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/","name":"What is Redis Object Caching and How to Use It for Your WordPress Site","isPartOf":{"@id":"https:\/\/wp-rocket.me\/#website"},"datePublished":"2023-04-11T10:29:01+00:00","dateModified":"2023-05-10T13:41:43+00:00","description":"Redis object caching can vastly speed up your WordPress page load times. It\u2019s an incredibly popular option: here\u2019s how to use it and set it up.","breadcrumb":{"@id":"https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wp-rocket.me\/wordpress-cache\/redis-object-caching\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wp-rocket.me\/wordpress-cache\/redis-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 Redis Object Caching and How to Use It for Your WordPress Site"}]},{"@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\/5440416"}],"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=5440416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}