{"id":2117,"date":"2016-04-22T22:15:53","date_gmt":"2016-04-22T22:15:52","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/?p=2117"},"modified":"2025-10-09T07:15:13","modified_gmt":"2025-10-09T14:15:13","slug":"how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/es\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/","title":{"rendered":"C\u00f3mo: Crea una copia de tu bucket con una sola sentencia con Couchbase Server"},"content":{"rendered":"<p>La manipulaci\u00f3n de datos por lotes puede ser muy \u00fatil para todo tipo de operaciones. La buena noticia es que DML (lenguaje de manipulaci\u00f3n de datos) en N1QL proporciona soporte completo para, no s\u00f3lo operaciones singleton, sino para una poderosa transformaci\u00f3n de datos por lotes. Aqu\u00ed hay algunos ejemplos poderosos;<\/p>\n<p>- UPDATE puede ayudarte a a\u00f1adir e inicializar un nuevo atributo en documentos que no tienen el atributo last_updated. .<\/p>\n<pre>\r\n<code class=\"language-sql\">UPDATE bucket SET last_updated =\"1\/1\/1973\" WHERE last_updated IS MISSING;<\/code><\/pre>\n<p>O dividir un atributo name en nombre y apellidos.<\/p>\n<pre>\r\n<code class=\"language-sql\">UPDATE default SET first_name=SPLIT(name)[0], last_name=SPLIT(name)[1] UNSET name;<\/code><\/pre>\n<p>\u00a0<\/p>\n<p>- La sentencia INSERT puede agruparse de varias maneras. He aqu\u00ed un ejemplo con VALORES.<\/p>\n<pre>\r\n<code class=\"language-sql\">INSERT INTO bucket(key,value) VALUES(\"0\",{\"name\":\"Kaan\"}), VALUES(\"1\",{\"name\":\"Lara\"}), ... ;<\/code><\/pre>\n<p>Tambi\u00e9n suelo copiar los datos de mis cubos a otros cubos para experimentarlos utilizando INSERT. INSERT con SELECT mueve grandes conjuntos de datos con una sola sentencia. He aqu\u00ed c\u00f3mo crear una copia de bucket_1 bajo un nuevo nombre bucket_2.<\/p>\n<pre>\r\n<code class=\"language-sql\">INSERT INTO bucket_2 (key _k, value _v) SELECT META().id _k, _v FROM bucket_1 _v;<\/code><\/pre>\n<p>Tambi\u00e9n utilizo UPSERT para fusionar los cambios de bucket_1 a bucket_2 a medida que bucket_1 cambia.<\/p>\n<pre>\r\n<code class=\"language-sql\">UPSERT INTO bucket_2 (key _k, value _v) SELECT meta().id _k, _v FROM bucket_1 _v;\r\n<\/code><\/pre>\n<p>\u00a0<\/p>\n<p>Las actualizaciones por lotes y las operaciones masivas pueden ser dif\u00edciles de codificar sin las flexibilidades de SQL. N1QL te permite hacer todo eso y m\u00e1s con JSON.<\/p>\n<p>Encontrar\u00e1 m\u00e1s informaci\u00f3n sobre las declaraciones LMD aqu\u00ed:<\/p>\n<p>INSERTAR: <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/insert.html\">https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/insert.html<\/a><\/p>\n<p>ACTUALIZACI\u00d3N: <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/update.html\">https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/update.html<\/a><\/p>\n<p>UPSERT: <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/upsert.html\">https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/upsert.html<\/a><\/p>\n<p>FUSIONAR: <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/merge.html\">https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/merge.html<\/a><\/p>\n<p>BORRAR: <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/delete.html\">https:\/\/developer.couchbase.com\/documentation\/server\/4.1\/n1ql\/n1ql-language-reference\/delete.html<\/a><\/p>\n<p>\u00a0<\/p>\n<p>Feliz prueba.<\/p>\n<p>-cihan<\/p>","protected":false},"excerpt":{"rendered":"<p>Batch data manipulation can be super handy for all sorts of operations. Good news is, DML (data manipulation language) in N1QL provides full support for, not just singleton operations, but for powerful bulk\/batch data transformation. Here are a few powerful [&hellip;]<\/p>","protected":false},"author":7,"featured_media":13873,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1812],"tags":[],"ppma_author":[8978],"class_list":["post-2117","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-n1ql-query"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v26.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to: Create a copy of your bucket with a single statement with Couchbase Server - 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\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to: Create a copy of your bucket with a single statement with Couchbase Server\" \/>\n<meta property=\"og:description\" content=\"Batch data manipulation can be super handy for all sorts of operations. Good news is, DML (data manipulation language) in N1QL provides full support for, not just singleton operations, but for powerful bulk\/batch data transformation. Here are a few powerful [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/es\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-22T22:15:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-09T14:15:13+00:00\" \/>\n<meta name=\"author\" content=\"Cihan Biyikoglu, Director of Product Management, Couchbase\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Cihan Biyikoglu, Director of Product Management, Couchbase\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\"},\"author\":{\"name\":\"Cihan Biyikoglu, Director of Product Management, Couchbase\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/3d8c60500ca29254fcdb2f76f29fb088\"},\"headline\":\"How to: Create a copy of your bucket with a single statement with Couchbase Server\",\"datePublished\":\"2016-04-22T22:15:52+00:00\",\"dateModified\":\"2025-10-09T14:15:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\"},\"wordCount\":262,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"articleSection\":[\"SQL++ \/ N1QL Query\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\",\"url\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\",\"name\":\"How to: Create a copy of your bucket with a single statement with Couchbase Server - The Couchbase Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"datePublished\":\"2016-04-22T22:15:52+00:00\",\"dateModified\":\"2025-10-09T14:15:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#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\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.couchbase.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to: Create a copy of your bucket with a single statement with Couchbase Server\"}]},{\"@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\/3d8c60500ca29254fcdb2f76f29fb088\",\"name\":\"Cihan Biyikoglu, Director of Product Management, Couchbase\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/image\/a878e65cb37ac2419416d3289816abd5\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3e1ac58dd480dd8a6e93d700a58d329bb81df928061de04395055a45274b8702?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3e1ac58dd480dd8a6e93d700a58d329bb81df928061de04395055a45274b8702?s=96&d=mm&r=g\",\"caption\":\"Cihan Biyikoglu, Director of Product Management, Couchbase\"},\"description\":\"Cihan Biyikoglu is a director of product management at Couchbase, responsible for the Couchbase Server product. Cihan is a big data enthusiast who brings over twenty years of experience to Redis Labs\u2019 product team. Cihan started his career as a C\/C++ developer.\",\"url\":\"https:\/\/www.couchbase.com\/blog\/es\/author\/cihan-biyikoglu\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to: Create a copy of your bucket with a single statement with Couchbase Server - 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\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/","og_locale":"es_MX","og_type":"article","og_title":"How to: Create a copy of your bucket with a single statement with Couchbase Server","og_description":"Batch data manipulation can be super handy for all sorts of operations. Good news is, DML (data manipulation language) in N1QL provides full support for, not just singleton operations, but for powerful bulk\/batch data transformation. Here are a few powerful [&hellip;]","og_url":"https:\/\/www.couchbase.com\/blog\/es\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/","og_site_name":"The Couchbase Blog","article_published_time":"2016-04-22T22:15:52+00:00","article_modified_time":"2025-10-09T14:15:13+00:00","author":"Cihan Biyikoglu, Director of Product Management, Couchbase","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Cihan Biyikoglu, Director of Product Management, Couchbase","Est. reading time":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/"},"author":{"name":"Cihan Biyikoglu, Director of Product Management, Couchbase","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/3d8c60500ca29254fcdb2f76f29fb088"},"headline":"How to: Create a copy of your bucket with a single statement with Couchbase Server","datePublished":"2016-04-22T22:15:52+00:00","dateModified":"2025-10-09T14:15:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/"},"wordCount":262,"commentCount":0,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","articleSection":["SQL++ \/ N1QL Query"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/","url":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/","name":"How to: Create a copy of your bucket with a single statement with Couchbase Server - The Couchbase Blog","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","datePublished":"2016-04-22T22:15:52+00:00","dateModified":"2025-10-09T14:15:13+00:00","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#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\/how-to-create-a-copy-of-your-bucket-how-to-transform-bucket-data-with-bulk-mutations-insert-update-delete-merge-in-n1ql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to: Create a copy of your bucket with a single statement with Couchbase Server"}]},{"@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\/3d8c60500ca29254fcdb2f76f29fb088","name":"Cihan Biyikoglu, Director de Gesti\u00f3n de Productos, Couchbase","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/image\/a878e65cb37ac2419416d3289816abd5","url":"https:\/\/secure.gravatar.com\/avatar\/3e1ac58dd480dd8a6e93d700a58d329bb81df928061de04395055a45274b8702?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3e1ac58dd480dd8a6e93d700a58d329bb81df928061de04395055a45274b8702?s=96&d=mm&r=g","caption":"Cihan Biyikoglu, Director of Product Management, Couchbase"},"description":"Cihan Biyikoglu es director de gesti\u00f3n de productos en Couchbase, responsable del producto Couchbase Server. Cihan es un entusiasta de los grandes datos que aporta m\u00e1s de veinte a\u00f1os de experiencia al equipo de productos de Redis Labs. Cihan comenz\u00f3 su carrera como desarrollador de C\/C++.","url":"https:\/\/www.couchbase.com\/blog\/es\/author\/cihan-biyikoglu\/"}]}},"authors":[{"term_id":8978,"user_id":7,"is_guest":0,"slug":"cihan-biyikoglu","display_name":"Cihan Biyikoglu, Director of Product Management, Couchbase","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/3e1ac58dd480dd8a6e93d700a58d329bb81df928061de04395055a45274b8702?s=96&d=mm&r=g","author_category":"","last_name":"Biyikoglu","first_name":"Cihan","job_title":"","user_url":"","description":"Cihan Biyikoglu es director de gesti\u00f3n de productos en Couchbase, responsable del producto Couchbase Server. Cihan es un entusiasta de los grandes datos que aporta m\u00e1s de veinte a\u00f1os de experiencia al equipo de productos de Redis Labs. Cihan comenz\u00f3 su carrera como desarrollador de C\/C++."}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2117","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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/comments?post=2117"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2117\/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=2117"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/categories?post=2117"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/tags?post=2117"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/ppma_author?post=2117"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}