{"id":928,"date":"2017-05-18T07:16:17","date_gmt":"2017-05-18T07:16:17","guid":{"rendered":"https:\/\/www.bsetec.com\/blog\/?p=928"},"modified":"2017-05-18T07:16:17","modified_gmt":"2017-05-18T07:16:17","slug":"optimize-web-applications-with-memcached","status":"publish","type":"post","link":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/","title":{"rendered":"Optimize web applications with Memcached"},"content":{"rendered":"<p><a href=\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter size-full wp-image-929\" src=\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\" alt=\"finalmem\" width=\"644\" height=\"286\" srcset=\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png 644w, https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem-300x133.png 300w\" sizes=\"(max-width: 644px) 100vw, 644px\" \/><\/a><\/p>\n<p><strong>High-performance, distributed memory object caching system which is free &amp; open source,<\/strong> is Our <strong>MEMCACHED<\/strong> where it helps in speeding up the dynamic web applications by alleviating database load.<\/p>\n<p>Deals with in-memory key-value where memcache stores for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.<\/p>\n<p><strong>Memcached is simple yet powerful<\/strong>. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches. Its API is available for most popular languages.<\/p>\n<p><strong>Security<\/strong><\/p>\n<p>Deployments of Memcached lay within trusted networks where clients can freely connect to any server.However, at \u2013times Memcached is deployed in untrusted networks or where administrators want to exercise control over the clients that are connecting. During this latency Memcached can be compiled with optional SASL authentication support. The SASL support requires the binary protocol.<\/p>\n<p><strong>Memcached offers advantages<\/strong><\/p>\n<ul>\n<li>Direct access to the storage engine avoids the parsing and planning overhead of SQL.<\/li>\n<li>Running memcached in the same process space as the MySQL server avoids the network overhead of passing requests back and forth.<\/li>\n<li>Data written using the memcached protocol is transparently written to a DB table, without going through the MySQL SQL layer. You can control frequency of writes to achieve higher raw performance when updating non-critical data.<\/li>\n<li>Data requested through the memcached protocol is transparently queried from a DB table, without going through the MySQL SQL layer.<\/li>\n<li>Subsequent requests for the same data are served from the DB buffer pool. The buffer pool handles the in-memory caching. You can tune performance of data-intensive operations using DB configuration options.<\/li>\n<li>Data can be unstructured or structured, depending on the type of application. You can create a new table for data, or use existing tables.<\/li>\n<li>The transfer between memory and disk is handled automatically, simplifying application logic.<\/li>\n<li>You can access the underlying DB table through SQL for reporting, analysis, ad hoc queries, bulk loading, multi-step transactional computations, set operations such as union and intersection, and other operations suited to the expressiveness and flexibility of SQL.<\/li>\n<li>The serialization features of memcached, which can turn complex data structures, binary files, or even code blocks into storable strings, offer a simple way to get such objects into a database.<\/li>\n<li>You do not need to manually load data into memcached at startup. As particular keys are requested by an application, values are retrieved from the database automatically, and cached in memory using the DB buffer pool.<\/li>\n<li>Because memcached consumes relatively little CPU, and its memory footprint is easy to control, it can run comfortably alongside a MySQL instance on the same system.<\/li>\n<li>Because data consistency is enforced by mechanisms used for regular DB tables, you do not have to worry about stale memcached data or fallback logic to query the database in the case of a missing key.<\/li>\n<\/ul>\n<p>Sample Snippet :<\/p>\n<p>Converting database or object creation queries to use Memcached is simple. Typically, when using straight database queries, example code would be as follows:<\/p>\n<p>function get_foo(int userid)<\/p>\n<p>data = db_select(&#8220;SELECT * FROM users WHERE userid = ?&#8221;, userid)<\/p>\n<p>return data<\/p>\n<p>After conversion to Memcached, the same call might look like the following<\/p>\n<p>function get_foo(int userid)<\/p>\n<p>\/* first try the cache *\/<\/p>\n<p>data = memcached_fetch(&#8220;userrow:&#8221; + userid)<\/p>\n<p>if not data<\/p>\n<p>\/* not found : request database *\/<\/p>\n<p>data = db_select(&#8220;SELECT * FROM users WHERE userid = ?&#8221;, userid)<\/p>\n<p>\/* then store in cache until next get *\/<\/p>\n<p>memcached_add(&#8220;userrow:&#8221; + userid, data)<\/p>\n<p>return data<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>High-performance, distributed memory object caching system which is free &amp; open source, is Our MEMCACHED where it helps in speeding up the dynamic web applications by alleviating database load. Deals with in-memory key-value where memcache stores for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":929,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-928","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Optimize web applications with Memcached | BSEtec<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Optimize web applications with Memcached | BSEtec\" \/>\n<meta property=\"og:description\" content=\"High-performance, distributed memory object caching system which is free &amp; open source, is Our MEMCACHED where it helps in speeding up the dynamic web applications by alleviating database load. Deals with in-memory key-value where memcache stores for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\" \/>\n<meta property=\"og:site_name\" content=\"BSEtec\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/bsetec\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-18T07:16:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\" \/>\n\t<meta property=\"og:image:width\" content=\"644\" \/>\n\t<meta property=\"og:image:height\" content=\"286\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"BSEtec\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BSEtech\" \/>\n<meta name=\"twitter:site\" content=\"@BSEtech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"BSEtec\" \/>\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:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\"},\"author\":{\"name\":\"BSEtec\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/#\/schema\/person\/24a8ed4eefa5e9bf112e896653ca21c4\"},\"headline\":\"Optimize web applications with Memcached\",\"datePublished\":\"2017-05-18T07:16:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\"},\"wordCount\":572,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\",\"url\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\",\"name\":\"Optimize web applications with Memcached | BSEtec\",\"isPartOf\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\",\"datePublished\":\"2017-05-18T07:16:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage\",\"url\":\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\",\"contentUrl\":\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png\",\"width\":644,\"height\":286},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.bsetec.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Optimize web applications with Memcached\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/#website\",\"url\":\"https:\/\/www.bsetec.com\/blog\/\",\"name\":\"BSEtec\",\"description\":\"Exploring the World of Tech, One Byte at a Time\",\"publisher\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/#organization\"},\"alternateName\":\"BSEtec\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.bsetec.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/#organization\",\"name\":\"BSEtec\",\"url\":\"https:\/\/www.bsetec.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2023\/01\/fav.ico\",\"contentUrl\":\"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2023\/01\/fav.ico\",\"width\":1,\"height\":1,\"caption\":\"BSEtec\"},\"image\":{\"@id\":\"https:\/\/www.bsetec.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/bsetec\/\",\"https:\/\/x.com\/BSEtech\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/#\/schema\/person\/24a8ed4eefa5e9bf112e896653ca21c4\",\"name\":\"BSEtec\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.bsetec.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/20fcfaf426a285886f813fd3e9e0ad48f22440b11201e9a669807c088bfdac8e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/20fcfaf426a285886f813fd3e9e0ad48f22440b11201e9a669807c088bfdac8e?s=96&d=mm&r=g\",\"caption\":\"BSEtec\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Optimize web applications with Memcached | BSEtec","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/","og_locale":"en_US","og_type":"article","og_title":"Optimize web applications with Memcached | BSEtec","og_description":"High-performance, distributed memory object caching system which is free &amp; open source, is Our MEMCACHED where it helps in speeding up the dynamic web applications by alleviating database load. Deals with in-memory key-value where memcache stores for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached [&hellip;]","og_url":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/","og_site_name":"BSEtec","article_publisher":"https:\/\/www.facebook.com\/bsetec\/","article_published_time":"2017-05-18T07:16:17+00:00","og_image":[{"width":644,"height":286,"url":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png","type":"image\/png"}],"author":"BSEtec","twitter_card":"summary_large_image","twitter_creator":"@BSEtech","twitter_site":"@BSEtech","twitter_misc":{"Written by":"BSEtec","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#article","isPartOf":{"@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/"},"author":{"name":"BSEtec","@id":"https:\/\/www.bsetec.com\/blog\/#\/schema\/person\/24a8ed4eefa5e9bf112e896653ca21c4"},"headline":"Optimize web applications with Memcached","datePublished":"2017-05-18T07:16:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/"},"wordCount":572,"commentCount":0,"publisher":{"@id":"https:\/\/www.bsetec.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/","url":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/","name":"Optimize web applications with Memcached | BSEtec","isPartOf":{"@id":"https:\/\/www.bsetec.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage"},"image":{"@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png","datePublished":"2017-05-18T07:16:17+00:00","breadcrumb":{"@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#primaryimage","url":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png","contentUrl":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png","width":644,"height":286},{"@type":"BreadcrumbList","@id":"https:\/\/www.bsetec.com\/blog\/optimize-web-applications-with-memcached\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.bsetec.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Optimize web applications with Memcached"}]},{"@type":"WebSite","@id":"https:\/\/www.bsetec.com\/blog\/#website","url":"https:\/\/www.bsetec.com\/blog\/","name":"BSEtec","description":"Exploring the World of Tech, One Byte at a Time","publisher":{"@id":"https:\/\/www.bsetec.com\/blog\/#organization"},"alternateName":"BSEtec","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bsetec.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bsetec.com\/blog\/#organization","name":"BSEtec","url":"https:\/\/www.bsetec.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bsetec.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2023\/01\/fav.ico","contentUrl":"https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2023\/01\/fav.ico","width":1,"height":1,"caption":"BSEtec"},"image":{"@id":"https:\/\/www.bsetec.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/bsetec\/","https:\/\/x.com\/BSEtech"]},{"@type":"Person","@id":"https:\/\/www.bsetec.com\/blog\/#\/schema\/person\/24a8ed4eefa5e9bf112e896653ca21c4","name":"BSEtec","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bsetec.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/20fcfaf426a285886f813fd3e9e0ad48f22440b11201e9a669807c088bfdac8e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/20fcfaf426a285886f813fd3e9e0ad48f22440b11201e9a669807c088bfdac8e?s=96&d=mm&r=g","caption":"BSEtec"}}]}},"blog_post_layout_featured_media_urls":{"thumbnail":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem-150x150.png",150,150,true],"full":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",644,286,false]},"categories_names":{"1":{"name":"Uncategorized","link":"https:\/\/www.bsetec.com\/blog\/category\/uncategorized\/"}},"tags_names":[],"comments_number":"0","wpmagazine_modules_lite_featured_media_urls":{"thumbnail":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem-150x150.png",150,150,true],"cvmm-medium":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",300,133,false],"cvmm-medium-plus":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",305,135,false],"cvmm-portrait":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",400,178,false],"cvmm-medium-square":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",600,266,false],"cvmm-large":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",644,286,false],"cvmm-small":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",130,58,false],"full":["https:\/\/www.bsetec.com\/blog\/wp-content\/uploads\/2017\/05\/finalmem.png",644,286,false]},"_links":{"self":[{"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/posts\/928","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/comments?post=928"}],"version-history":[{"count":4,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/posts\/928\/revisions"}],"predecessor-version":[{"id":933,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/posts\/928\/revisions\/933"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/media\/929"}],"wp:attachment":[{"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/media?parent=928"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/categories?post=928"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bsetec.com\/blog\/wp-json\/wp\/v2\/tags?post=928"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}