{"id":2324,"date":"2016-07-07T15:44:35","date_gmt":"2016-07-07T15:44:34","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/?p=2324"},"modified":"2025-06-13T21:28:59","modified_gmt":"2025-06-14T04:28:59","slug":"php-sdk-2-2-0-example-with-full-text-search","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/es\/php-sdk-2-2-0-example-with-full-text-search\/","title":{"rendered":"PHP SDK 2.2.0: Un ejemplo con b\u00fasqueda de texto completo"},"content":{"rendered":"<p>Hoy me gustar\u00eda anunciar el PHP SDK 2.0.0 GA, que trae un par de nuevas feturas junto con m\u00e1s correcciones y mejoras. En esta entrada del blog voy a demostrar uno de ellos (para una lista completa de los cambios se refieren a la\u00a0<a href=\"https:\/\/developer.couchbase.com\/server\/other-products\/release-notes-archives\/php-sdk\">Notas de publicaci\u00f3n<\/a>).<\/p>\n<h2>API de b\u00fasqueda de texto completo<\/h2>\n<p>Puede que hayas o\u00eddo hablar de esta API anteriormente, pero esta vez vamos a mostrarla desde PHP. Asumimos que has instalado Couchbase 4.5 como m\u00ednimo y has configurado el bucket de ejemplo mejorado <code>muestra de cerveza<\/code> con el \u00edndice Full Text definido. M\u00e1s informaci\u00f3n sobre la configuraci\u00f3n del \u00edndice de b\u00fasqueda en <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.5\/sdk\/full-text-search-overview.html\">Secci\u00f3n de b\u00fasqueda de texto completo de la gu\u00eda del SDK<\/a>.<\/p>\n<pre class=\"lang:php decode:true\">openBucket('cerveza-muestra');\r\n\r\n\/\/utilizamos una forma sencilla de b\u00fasqueda\r\n$query = CouchbaseSearchQuery::match('nacional');\r\n\r\n\/\/ejecutamos la b\u00fasqueda y miramos los resultados\r\n$result = $bucket-&gt;query(new CouchbaseSearchQuery('beerIndex', $query));\r\nprintf(\"score id\\n----------------------------\\n\");\r\nforeach ($result-&gt;hits as $row) {\r\n  printf(\"%f %s\\n\", $row-&gt;puntuaci\u00f3n, $row-&gt;id);\r\n}\r\nprintf(\"----------------------------\\n\");\r\nprintf(\"total hits: %d\\n\", $result-&gt;metrics['total_hits']);<\/pre>\n<pre class=\"lang:bash decode:true\">~ $ php search.php\r\nid de puntuaci\u00f3n\r\n----------------------------\r\n0.574057 penn_brewery-penn_marzen\r\n0.542845 penn_brewery-penn_oktoberfest\r\n0.536256 chelsea_brewing_company\r\n0,529263 bluegrass_brewing_company_inc\r\n0,528675 labatt_ontario_breweries-labatt_extra_dry\r\n0,489116 rahr_sons_brewing_company-iron_thistle\r\n0,474812 pabst_brewing_company\r\n0.451381 rogue_ales-dad_s_little_helper\r\n0,447907 pabst_brewing_company-lone_star\r\n0,442591 gran_divida_cervecera_denver_pale_ale_dpa\r\n----------------------------\r\ntotal de visitas: 17<\/pre>\n<p>M\u00e1s ejemplos en\u00a0<a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.5\/sdk\/php\/full-text-searching-with-sdk.html\">B\u00fasqueda desde el SDK<\/a>.<\/p>\n<h2>Conseguir la liberaci\u00f3n<\/h2>\n<p>Para instalar esta versi\u00f3n, utilice el siguiente comando y aseg\u00farese de tener instalada libcouchbase 2.6.1+ (m\u00e1s informaci\u00f3n en <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.5\/sdk\/php\/start-using-sdk.html\">Empezar a utilizar el SDK<\/a> p\u00e1gina):<\/p>\n<pre><code class=\"bash\">pecl install couchbase-2.2.0\r\n<\/code><\/pre>\n<p>Si tiene alg\u00fan problema, env\u00ede un mensaje directamente a los foros de Couchbase en <a href=\"https:\/\/www.couchbase.com\/blog\/es\/forums\/c\/php-sdk\/\">https:\/\/www.couchbase.com\/forums\/c\/php-sdk\/<\/a>. Adem\u00e1s, se puede informar de los errores directamente a trav\u00e9s de nuestro <a href=\"https:\/\/www.couchbase.com\/blog\/es\/issues\/browse\/PCBC\/\">seguimiento de problemas<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Today I&#8217;d like to announce the PHP SDK 2.0.0 GA, which brings a couple of new fetures along with more fixes and improvements. In this blog post I will demonstrate one of them (for a full list of changes refer [&hellip;]<\/p>","protected":false},"author":25,"featured_media":13873,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1816,2165,9408],"tags":[1583],"ppma_author":[8995],"class_list":["post-2324","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-couchbase-server","category-full-text-search","category-php","tag-cbft"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.4 (Yoast SEO v26.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP SDK 2.2.0: An Example with Full-Text Search - The Couchbase Blog<\/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.couchbase.com\/blog\/es\/php-sdk-2-2-0-example-with-full-text-search\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP SDK 2.2.0: An Example with Full-Text Search\" \/>\n<meta property=\"og:description\" content=\"Today I&#8217;d like to announce the PHP SDK 2.0.0 GA, which brings a couple of new fetures along with more fixes and improvements. In this blog post I will demonstrate one of them (for a full list of changes refer [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/es\/php-sdk-2-2-0-example-with-full-text-search\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-07T15:44:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-14T04:28:59+00:00\" \/>\n<meta name=\"author\" content=\"Sergey Avseyev, SDK Engineer, Couchbase\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@avsej\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sergey Avseyev, SDK Engineer, Couchbase\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/\"},\"author\":{\"name\":\"Sergey Avseyev, SDK Engineer, Couchbase\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e9181374f225c90084ec3ba86bdcfa2e\"},\"headline\":\"PHP SDK 2.2.0: An Example with Full-Text Search\",\"datePublished\":\"2016-07-07T15:44:34+00:00\",\"dateModified\":\"2025-06-14T04:28:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/\"},\"wordCount\":170,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"keywords\":[\"cbft\"],\"articleSection\":[\"Couchbase Server\",\"Full-Text Search\",\"PHP\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/\",\"url\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/\",\"name\":\"PHP SDK 2.2.0: An Example with Full-Text Search - The Couchbase Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"datePublished\":\"2016-07-07T15:44:34+00:00\",\"dateModified\":\"2025-06-14T04:28:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage\",\"url\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"contentUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"width\":1800,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.couchbase.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP SDK 2.2.0: An Example with Full-Text Search\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#website\",\"url\":\"https:\/\/www.couchbase.com\/blog\/\",\"name\":\"The Couchbase Blog\",\"description\":\"Couchbase, the NoSQL Database\",\"publisher\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.couchbase.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\",\"name\":\"The Couchbase Blog\",\"url\":\"https:\/\/www.couchbase.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png\",\"contentUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png\",\"width\":218,\"height\":34,\"caption\":\"The Couchbase Blog\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e9181374f225c90084ec3ba86bdcfa2e\",\"name\":\"Sergey Avseyev, SDK Engineer, Couchbase\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/image\/796ab283bd56fe3716a102ebe16daff6\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/288a892d231cf8c4e57ed0643e4681b4654a141361f6ec3c5b79ccd4d885e038?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/288a892d231cf8c4e57ed0643e4681b4654a141361f6ec3c5b79ccd4d885e038?s=96&d=mm&r=g\",\"caption\":\"Sergey Avseyev, SDK Engineer, Couchbase\"},\"description\":\"Sergey Avseyev is a SDK Engineer at Couchbase. Sergey Avseyev is responsible for development of Kafka connector, and underlying library, which implements DCP, Couchbase replication protocol. Also maintaining PHP SDK for Couchbase.\",\"sameAs\":[\"https:\/\/x.com\/avsej\"],\"url\":\"https:\/\/www.couchbase.com\/blog\/es\/author\/sergey-avseyev\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP SDK 2.2.0: An Example with Full-Text Search - The Couchbase Blog","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.couchbase.com\/blog\/es\/php-sdk-2-2-0-example-with-full-text-search\/","og_locale":"es_MX","og_type":"article","og_title":"PHP SDK 2.2.0: An Example with Full-Text Search","og_description":"Today I&#8217;d like to announce the PHP SDK 2.0.0 GA, which brings a couple of new fetures along with more fixes and improvements. In this blog post I will demonstrate one of them (for a full list of changes refer [&hellip;]","og_url":"https:\/\/www.couchbase.com\/blog\/es\/php-sdk-2-2-0-example-with-full-text-search\/","og_site_name":"The Couchbase Blog","article_published_time":"2016-07-07T15:44:34+00:00","article_modified_time":"2025-06-14T04:28:59+00:00","author":"Sergey Avseyev, SDK Engineer, Couchbase","twitter_card":"summary_large_image","twitter_creator":"@avsej","twitter_misc":{"Written by":"Sergey Avseyev, SDK Engineer, Couchbase","Est. reading time":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/"},"author":{"name":"Sergey Avseyev, SDK Engineer, Couchbase","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e9181374f225c90084ec3ba86bdcfa2e"},"headline":"PHP SDK 2.2.0: An Example with Full-Text Search","datePublished":"2016-07-07T15:44:34+00:00","dateModified":"2025-06-14T04:28:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/"},"wordCount":170,"commentCount":0,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","keywords":["cbft"],"articleSection":["Couchbase Server","Full-Text Search","PHP"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/","url":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/","name":"PHP SDK 2.2.0: An Example with Full-Text Search - The Couchbase Blog","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","datePublished":"2016-07-07T15:44:34+00:00","dateModified":"2025-06-14T04:28:59+00:00","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#primaryimage","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","width":1800,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.couchbase.com\/blog\/php-sdk-2-2-0-example-with-full-text-search\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"PHP SDK 2.2.0: An Example with Full-Text Search"}]},{"@type":"WebSite","@id":"https:\/\/www.couchbase.com\/blog\/#website","url":"https:\/\/www.couchbase.com\/blog\/","name":"El blog de Couchbase","description":"Couchbase, la base de datos NoSQL","publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.couchbase.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.couchbase.com\/blog\/#organization","name":"El blog de Couchbase","url":"https:\/\/www.couchbase.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png","width":218,"height":34,"caption":"The Couchbase Blog"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/e9181374f225c90084ec3ba86bdcfa2e","name":"Sergey Avseyev, Ingeniero SDK, Couchbase","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/image\/796ab283bd56fe3716a102ebe16daff6","url":"https:\/\/secure.gravatar.com\/avatar\/288a892d231cf8c4e57ed0643e4681b4654a141361f6ec3c5b79ccd4d885e038?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/288a892d231cf8c4e57ed0643e4681b4654a141361f6ec3c5b79ccd4d885e038?s=96&d=mm&r=g","caption":"Sergey Avseyev, SDK Engineer, Couchbase"},"description":"Sergey Avseyev es Ingeniero SDK en Couchbase. Sergey Avseyev es responsable del desarrollo del conector Kafka, y la biblioteca subyacente, que implementa DCP, el protocolo de replicaci\u00f3n de Couchbase. Tambi\u00e9n mantiene PHP SDK para Couchbase.","sameAs":["https:\/\/x.com\/avsej"],"url":"https:\/\/www.couchbase.com\/blog\/es\/author\/sergey-avseyev\/"}]}},"authors":[{"term_id":8995,"user_id":25,"is_guest":0,"slug":"sergey-avseyev","display_name":"Sergey Avseyev, SDK Engineer, Couchbase","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/288a892d231cf8c4e57ed0643e4681b4654a141361f6ec3c5b79ccd4d885e038?s=96&d=mm&r=g","author_category":"","last_name":"Avseyev, SDK Engineer, Couchbase","first_name":"Sergey","job_title":"","user_url":"","description":"Sergey Avseyev es Ingeniero SDK en Couchbase. Sergey Avseyev es responsable del desarrollo del conector Kafka, y la biblioteca subyacente, que implementa DCP, el protocolo de replicaci\u00f3n de Couchbase. Tambi\u00e9n mantiene PHP SDK para Couchbase."}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2324","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/comments?post=2324"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2324\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/media\/13873"}],"wp:attachment":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/media?parent=2324"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/categories?post=2324"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/tags?post=2324"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/ppma_author?post=2324"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}