{"id":514547,"date":"2025-11-26T14:59:39","date_gmt":"2025-11-26T14:59:39","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=514547"},"modified":"2026-04-06T10:19:33","modified_gmt":"2026-04-06T10:19:33","slug":"magento2-redis-backend-cache-configuration","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/","title":{"rendered":"How to Use Redis Backend Cache in Magento 2"},"content":{"rendered":"\n<p class=\"has-medium-font-size\">Redis, an in-memory data structure store, is the gold standard for <a href=\"https:\/\/webkul.com\/blog\/caching-in-magento2adobe-commerce-tips-and-tricks\/\">Magento 2 Caching<\/a>. It&#8217;s lightning-fast, reliable, and significantly reduces the load on your database by handling caching operations.<\/p>\n\n\n\n<p class=\"has-medium-font-size\">You&#8217;ve already installed Redis, which is the first crucial step. Now, let&#8217;s bridge the gap and show Magento how to use it.<\/p>\n\n\n\n<p class=\"has-medium-font-size\">This guide will walk you through the exact steps to configure the Redis backend cache in Magento 2.<\/p>\n\n\n\n<p class=\"has-medium-font-size\"><a href=\"https:\/\/webkul.com\/blog\/what-is-redis-its-capabilities-and-features\/\" target=\"_blank\" rel=\"noreferrer noopener\">Redis<\/a> must be installed on your server before continuing.<\/p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"1080\" width=\"1920\" controls style=\"aspect-ratio: 1920 \/ 1080;width:100%; max-width:800px; height:auto;\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/11\/redis-backend-cache-in-magento2.mp4\"><\/video><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Configure Redis Backend Cache?<\/strong><\/h2>\n\n\n\n<p class=\"has-medium-font-size\">Before we dive in, let&#8217;s quickly recap why this configuration is so vital:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Blazing Speed:<\/strong> Redis operates entirely in memory, making data retrieval incredibly fast compared to disk-based or database caching.<\/li>\n\n\n\n<li><strong>Reduced Database Load:<\/strong> By offloading cache storage to Redis, your database is freed up to handle critical transactional queries, improving overall site stability and performance.<\/li>\n\n\n\n<li><strong>Improved Scalability:<\/strong> A lighter database load means your store can handle more<br>concurrent users without a degradation in performance.<\/li>\n\n\n\n<li><strong>Centralized Cache Management:<\/strong> Redis provides a single, efficient location for all your caching needs, from configuration and layouts to full-page content.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Backup Your Configuration<\/strong> env.php file.<\/h2>\n\n\n\n<p class=\"has-medium-font-size\">Safety first! Before making any changes, it&#8217;s essential to create a backup of your <br>Magento environment configuration file. <\/p>\n\n\n\n<p class=\"has-medium-font-size\">From your Magento root directory, run the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cp app\/etc\/env.php app\/etc\/env.php.bak<\/pre>\n\n\n\n<p>If anything goes wrong, you can easily restore the original file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Configure the Backend Cache<\/strong><\/h2>\n\n\n\n<p>The core of the configuration happens in the <code>app\/etc\/env.php<\/code> file. You will need to edit this file to tell Magento to use Redis as the <strong>backend cache storage<\/strong>.<\/p>\n\n\n\n<p>Using Redis for the <strong>backend cache<\/strong> improves overall system performance by reducing filesystem load and speeding up cache read\/write operations.<\/p>\n\n\n\n<p>For best practices, it is recommended to use a <strong>dedicated Redis database<\/strong> (e.g., <code>db 0<\/code>) for backend caching to avoid conflicts with other cache pools.<\/p>\n\n\n\n<p>The following example enables Redis backend cache, sets the host to 127.0.0.1, and assigns the database number to 1. All other parameters are set to the default value.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">bin\/magento setup:config:set --cache-backend=redis --cache-backend-redis-server=127.0.0.--cache-backend-redis-db=1 --cache-backend-redis-port=6379<\/pre>\n\n\n\n<p>After running these commands Magento 2 adds con\ufb01guration to app\/etc\/env.php \ufb01le.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&#039;cache&#039; =&gt; &#091;\n    &#039;frontend&#039; =&gt; &#091;\n        &#039;default&#039; =&gt; &#091;\n            &#039;backend&#039; =&gt; &#039;\\\\Cm\\\\Cache\\\\Backend\\\\Redis&#039;, \/\/ The Redis backend adapter\n            &#039;backend_options&#039; =&gt; &#091;\n                &#039;server&#039; =&gt; &#039;127.0.0.1&#039;, \/\/ Your Redis server IP\n                &#039;port&#039; =&gt; &#039;6379&#039;,        \/\/ Your Redis server port\n                &#039;database&#039; =&gt; &#039;1&#039;,       \/\/ Redis database for backend cache\n                \/\/ &#039;password&#039; =&gt; &#039;your-redis-password&#039;, \/\/ Uncomment and set if you have a password\n                &#039;force_standalone&#039; =&gt; 0,\n                &#039;connect_retries&#039; =&gt; 1,\n                &#039;read_timeout&#039; =&gt; 10,\n                &#039;automatic_cleaning_factor&#039; =&gt; 0,\n                &#039;compress_data&#039; =&gt; 1,\n                &#039;compress_tags&#039; =&gt; 1,\n                &#039;compress_threshold&#039; =&gt; 20480,\n                &#039;compression_lib&#039; =&gt; &#039;gzip&#039;,\n            ],\n        ],\n    ],\n],<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Parameters Explained:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>'backend'<\/code>: This tells Magento to use the Cm_RedisCache module&#8217;s backend adapter.<\/li>\n\n\n\n<li><code>'server'<\/code>: The IP address or hostname where your Redis server is running. <code>127.0.0.1<\/code> is used if Redis is on the same server as Magento.<\/li>\n\n\n\n<li><code>'port'<\/code>: The port your Redis server is listening on (default is <code>6379<\/code>).<\/li>\n\n\n\n<li><code>'database'<\/code>: The Redis database number. <strong>Crucially, we use <code>0<\/code> for <code>default<\/code> and <code>1<\/code> for <code>page_cache<\/code> to keep them separate.<\/strong><\/li>\n\n\n\n<li><code>'password'<\/code>: If your Redis instance is secured with a password, uncomment this line and add your password.<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\">Save the <code>env.php<\/code> file after making these changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Flush Magento Cache and Verify<\/strong><\/h2>\n\n\n\n<p>Now that the configuration is in place, you need to tell Magento to read the new settings and clear any existing cache.<\/p>\n\n\n\n<p>From your Magento root directory, run:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">bin\/magento cache:flush<\/pre>\n\n\n\n<p>This command clears all cache types and forces Magento to rebuild them using the new Redis backend cache.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>How to Verify Redis Backend Cache is Working<\/strong><\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">redis-cli<\/pre>\n\n\n\n<p>Once inside, you can monitor the live traffic. Type <code>MONITOR<\/code> and press Enter.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">redis-cli&gt; MONITOR<\/pre>\n\n\n\n<p>Now, load a few pages of your Magento store in your web browser. You should see a stream of commands appearing in your terminal window, looking something like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">1612345678.123456 &#091;0 127.0.0.1:54321] &quot;GET&quot; &quot;zc:k:default_...&quot;\n\n1612345678.234567 &#091;1 127.0.0.1:54322] &quot;HGET&quot; &quot;zc:k:FPC...&quot;\n...<\/pre>\n\n\n\n<p>The <code>[0]<\/code> and <code>[1]<\/code> indicate the database being used, confirming that both your default cache and FPC are being stored in Redis. Press <code>Ctrl+C<\/code> to stop monitoring.<\/p>\n\n\n\n<p>Reference <a href=\"https:\/\/experienceleague.adobe.com\/en\/docs\/commerce-operations\/configuration-guide\/cache\/redis\/redis-pg-cache\" rel=\"nofollow\">Redis Magento 2 doc<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Redis, an in-memory data structure store, is the gold standard for Magento 2 Caching. It&#8217;s lightning-fast, reliable, and significantly reduces the load on your database by handling caching operations. You&#8217;ve already installed Redis, which is the first crucial step. Now, let&#8217;s bridge the gap and show Magento how to use it. This guide will walk <a href=\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":522,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-514547","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Configure Redis Backend Cache in Magento 2<\/title>\n<meta name=\"description\" content=\"A complete guide to Magento 2 Redis backend caching configuration to help you boost store speed, caching efficiency, and overall performance.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Configure Redis Backend Cache in Magento 2\" \/>\n<meta property=\"og:description\" content=\"A complete guide to Magento 2 Redis backend caching configuration to help you boost store speed, caching efficiency, and overall performance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-26T14:59:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-06T10:19:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Neeraj\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neeraj\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\"},\"author\":{\"name\":\"Neeraj\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9073535bedd2c836bc38e64c4403a974\"},\"headline\":\"How to Use Redis Backend Cache in Magento 2\",\"datePublished\":\"2025-11-26T14:59:39+00:00\",\"dateModified\":\"2026-04-06T10:19:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\"},\"wordCount\":555,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\",\"name\":\"How to Configure Redis Backend Cache in Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2025-11-26T14:59:39+00:00\",\"dateModified\":\"2026-04-06T10:19:33+00:00\",\"description\":\"A complete guide to Magento 2 Redis backend caching configuration to help you boost store speed, caching efficiency, and overall performance.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Redis Backend Cache in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9073535bedd2c836bc38e64c4403a974\",\"name\":\"Neeraj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/363737617997d7473ba2e8202fac23d142482c1e143db3bdaba4b68c30ac54a6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/363737617997d7473ba2e8202fac23d142482c1e143db3bdaba4b68c30ac54a6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Neeraj\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/neeraj-mg853\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Configure Redis Backend Cache in Magento 2","description":"A complete guide to Magento 2 Redis backend caching configuration to help you boost store speed, caching efficiency, and overall performance.","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:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/","og_locale":"en_US","og_type":"article","og_title":"How to Configure Redis Backend Cache in Magento 2","og_description":"A complete guide to Magento 2 Redis backend caching configuration to help you boost store speed, caching efficiency, and overall performance.","og_url":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2025-11-26T14:59:39+00:00","article_modified_time":"2026-04-06T10:19:33+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Neeraj","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Neeraj","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/"},"author":{"name":"Neeraj","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9073535bedd2c836bc38e64c4403a974"},"headline":"How to Use Redis Backend Cache in Magento 2","datePublished":"2025-11-26T14:59:39+00:00","dateModified":"2026-04-06T10:19:33+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/"},"wordCount":555,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/","url":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/","name":"How to Configure Redis Backend Cache in Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2025-11-26T14:59:39+00:00","dateModified":"2026-04-06T10:19:33+00:00","description":"A complete guide to Magento 2 Redis backend caching configuration to help you boost store speed, caching efficiency, and overall performance.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento2-redis-backend-cache-configuration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use Redis Backend Cache in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9073535bedd2c836bc38e64c4403a974","name":"Neeraj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/363737617997d7473ba2e8202fac23d142482c1e143db3bdaba4b68c30ac54a6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/363737617997d7473ba2e8202fac23d142482c1e143db3bdaba4b68c30ac54a6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Neeraj"},"url":"https:\/\/webkul.com\/blog\/author\/neeraj-mg853\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/514547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/522"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=514547"}],"version-history":[{"count":21,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/514547\/revisions"}],"predecessor-version":[{"id":534263,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/514547\/revisions\/534263"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=514547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=514547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=514547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}