{"id":391711,"date":"2023-07-19T07:16:28","date_gmt":"2023-07-19T07:16:28","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=391711"},"modified":"2024-09-19T07:58:44","modified_gmt":"2024-09-19T07:58:44","slug":"how-to-use-redis-cache-for-magento-2-api-response","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/","title":{"rendered":"How to use Redis cache for Magento 2 API response."},"content":{"rendered":"\n<p><a href=\"https:\/\/webkul.com\/blog\/what-is-redis-its-capabilities-and-features\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Redis<\/a> is an in-memory database popularly used as a cache. <\/p>\n\n\n\n<p>To proceed with caching API response you have to install and <a href=\"https:\/\/webkul.com\/blog\/magento2-redis-cache-configuration\/\" target=\"_blank\" rel=\"noreferrer noopener\">configure Redis cache in Magento 2<\/a>.<\/p>\n\n\n\n<p>Here we have created a REST <a href=\"https:\/\/webkul.com\/blog\/magento2-custom-rest-api\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 API<\/a> with sample data in response.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\ApiService\\Model;\n\nclass ApiManagement implements \\Webkul\\ApiService\\Api\\ApiManagementInterface\n{\n    public function __construct(\n        \\Magento\\Framework\\App\\CacheInterface $cache\n    ) {\n        $this-&gt;cache = $cache;\n    }\n    \/**\n     * get test Api data.\n     *\n     * @api\n     *\n     * @return \\Webkul\\ApiService\\Api\\Data\\ApiInterface\n     *\/\n    public function getApiData()\n    {\n        $cacheData = $this-&gt;cache-&gt;load(&#039;22_test_identifier&#039;);\n        if ($cacheData) {\n            return json_decode($cacheData, true);\n        }\n        $returnArray = &#091;];\n        $returnArray&#091;] = &#091;\n            &#039;id&#039; =&gt; 22,\n            &#039;name&#039; =&gt; &quot;Test&quot;,\n            &#039;description&#039; =&gt; &quot;test description&quot;\n        ];\n        $this-&gt;cache-&gt;save(json_encode($returnArray),&quot;22_test_identifier&quot;, &#091;&quot;test_api_cache_tag&quot;], 82000);\n        sleep(2);\n        return $returnArray;\n    }\n}<\/pre>\n\n\n\n<p>In the above API model, we are saving the response in the cache and get the cached data on top with the help of the cache identifier.<\/p>\n\n\n\n<p>We have added a sleep function to differentiate the response timings.<\/p>\n\n\n\n<p>Now we can check by requesting the API. First request:-<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"977\" height=\"479\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png\" alt=\"initial_hit\" class=\"wp-image-391713\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png 977w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit-300x147.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit-250x123.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit-768x377.png 768w\" sizes=\"(max-width: 977px) 100vw, 977px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Second request (cached):-<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"978\" height=\"490\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/cached_hit.png\" alt=\"cached_hit\" class=\"wp-image-391714\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/cached_hit.png 978w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/cached_hit-300x150.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/cached_hit-250x125.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/cached_hit-768x385.png 768w\" sizes=\"(max-width: 978px) 100vw, 978px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Also, we can monitor the Redis operation through Redis CLI.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">redis-cli monitor<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"610\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/monitor-1200x610.png\" alt=\"redis cache monitor\" class=\"wp-image-391715\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/monitor-1200x610.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/monitor-300x152.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/monitor-250x127.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/monitor-768x390.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/monitor.png 1287w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can also check the Tips and Tricks of <a href=\"https:\/\/webkul.com\/blog\/caching-in-magento2adobe-commerce-tips-and-tricks\/\">Caching in Magento 2<\/a><\/p>\n\n\n\n<p>If you require technical support, feel free to email us at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n\n\n\n<p>Discover a variety of solutions to enhance your store&#8217;s functionality by exploring the\u00a0<a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 modules\u00a0<\/a>section.<\/p>\n\n\n\n<p>For personalized features or expert guidance, consider hiring,\u00a0<a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">hire Magento 2 Developers<\/a>\u00a0for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Redis is an in-memory database popularly used as a cache. To proceed with caching API response you have to install and configure Redis cache in Magento 2. Here we have created a REST Magento 2 API with sample data in response. In the above API model, we are saving the response in the cache and <a href=\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":366,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13710,9121],"tags":[1317,2070,5282,2253],"class_list":["post-391711","post","type-post","status-publish","format-standard","hentry","category-caching","category-magento-2","tag-cache","tag-magento2","tag-redis-cache","tag-rest-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to use Redis cache for Magento 2 API response. - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Here we will see how we can use Redis to cache Magento 2 API response and configure Redis cache on Magento.\" \/>\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\/how-to-use-redis-cache-for-magento-2-api-response\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use Redis cache for Magento 2 API response. - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here we will see how we can use Redis to cache Magento 2 API response and configure Redis cache on Magento.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\" \/>\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=\"2023-07-19T07:16:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-19T07:58:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png\" \/>\n<meta name=\"author\" content=\"Divya Prakash\" \/>\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=\"Divya Prakash\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\"},\"author\":{\"name\":\"Divya Prakash\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/144f9781b7aee2d1d0fbfde8fb012a98\"},\"headline\":\"How to use Redis cache for Magento 2 API response.\",\"datePublished\":\"2023-07-19T07:16:28+00:00\",\"dateModified\":\"2024-09-19T07:58:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\"},\"wordCount\":168,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png\",\"keywords\":[\"cache\",\"Magento2\",\"redis cache\",\"REST API\"],\"articleSection\":[\"Caching\",\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\",\"name\":\"How to use Redis cache for Magento 2 API response. - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png\",\"datePublished\":\"2023-07-19T07:16:28+00:00\",\"dateModified\":\"2024-09-19T07:58:44+00:00\",\"description\":\"Here we will see how we can use Redis to cache Magento 2 API response and configure Redis cache on Magento.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png\",\"width\":977,\"height\":479,\"caption\":\"initial_hit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to use Redis cache for Magento 2 API response.\"}]},{\"@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\/144f9781b7aee2d1d0fbfde8fb012a98\",\"name\":\"Divya Prakash\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?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\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Divya Prakash\"},\"description\":\"Divya Prakash, a talented Software Engineer, specializes in Magento development, delivering custom eCommerce solutions. Expertise in optimizing performance, integrating advanced features, and enhancing user experience drives innovation and business growth.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/divya-prakash407\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use Redis cache for Magento 2 API response. - Webkul Blog","description":"Here we will see how we can use Redis to cache Magento 2 API response and configure Redis cache on Magento.","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\/how-to-use-redis-cache-for-magento-2-api-response\/","og_locale":"en_US","og_type":"article","og_title":"How to use Redis cache for Magento 2 API response. - Webkul Blog","og_description":"Here we will see how we can use Redis to cache Magento 2 API response and configure Redis cache on Magento.","og_url":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-07-19T07:16:28+00:00","article_modified_time":"2024-09-19T07:58:44+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png","type":"","width":"","height":""}],"author":"Divya Prakash","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Divya Prakash","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/"},"author":{"name":"Divya Prakash","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/144f9781b7aee2d1d0fbfde8fb012a98"},"headline":"How to use Redis cache for Magento 2 API response.","datePublished":"2023-07-19T07:16:28+00:00","dateModified":"2024-09-19T07:58:44+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/"},"wordCount":168,"commentCount":3,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png","keywords":["cache","Magento2","redis cache","REST API"],"articleSection":["Caching","Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/","url":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/","name":"How to use Redis cache for Magento 2 API response. - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png","datePublished":"2023-07-19T07:16:28+00:00","dateModified":"2024-09-19T07:58:44+00:00","description":"Here we will see how we can use Redis to cache Magento 2 API response and configure Redis cache on Magento.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/07\/initial_hit.png","width":977,"height":479,"caption":"initial_hit"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-use-redis-cache-for-magento-2-api-response\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to use Redis cache for Magento 2 API response."}]},{"@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\/144f9781b7aee2d1d0fbfde8fb012a98","name":"Divya Prakash","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?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\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Divya Prakash"},"description":"Divya Prakash, a talented Software Engineer, specializes in Magento development, delivering custom eCommerce solutions. Expertise in optimizing performance, integrating advanced features, and enhancing user experience drives innovation and business growth.","url":"https:\/\/webkul.com\/blog\/author\/divya-prakash407\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391711","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\/366"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=391711"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391711\/revisions"}],"predecessor-version":[{"id":463863,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391711\/revisions\/463863"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=391711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=391711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=391711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}