{"id":2195,"date":"2016-03-20T21:30:00","date_gmt":"2016-03-20T21:30:00","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/?p=2195"},"modified":"2021-07-08T01:54:06","modified_gmt":"2021-07-08T08:54:06","slug":"integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/es\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/","title":{"rendered":"Visual Studio Code, el editor SQL integrado y la ejecuci\u00f3n de consultas N1QL"},"content":{"rendered":"<h2>Couchbase Server 4.5 y GO_CBQ<\/h2>\n<p>Con Couchbase Server 4.5, proporcionamos una nueva herramienta mejorada de ejecuci\u00f3n de consultas por l\u00ednea de comandos llamada \"go_cbq\". El nuevo binario viene con capacidades para soporte de scripts, gesti\u00f3n de conexiones y m\u00e1s.<\/p>\n<p>He estado usando go_cbq por un tiempo y me encanta. La mayor parte de la codificaci\u00f3n que hago en estos d\u00edas resulta ser c\u00f3digo de ejemplo con SDKs, N1QL y shell scripts en estos d\u00edas, y tener un potente editor lo hace divertido. Hace poco decid\u00ed probar Visual Studio Code. Funciona en Mac y Windows y hace la vida muy f\u00e1cil si usted est\u00e1 incursionando en el mismo espacio que yo.<\/p>\n<h2>Edici\u00f3n y ejecuci\u00f3n de N1QL en Visual Studio Code<\/h2>\n<p>Visual Studio Code es una herramienta bastante sencilla con editores inteligentes para muchos lenguajes. Lo estoy utilizando para la experimentaci\u00f3n GO en estos d\u00edas, pero el editor SQL es bastante potente tambi\u00e9n. Con \"tareas\" f\u00e1ciles de personalizar, tambi\u00e9n fue muy sencillo conseguir que el editor sql y go_cbq funcionaran juntos para ejecutar consultas N1QL en Couchbase Server. Estoy haciendo esto en Windows, pero todo lo siguiente se aplica a Mac tambi\u00e9n. As\u00ed es como puedes usar Visual Studio Code y Couchbase Server con N1QL juntos para editar y ejecutar consultas.\u00a0<\/p>\n<p>1- A\u00f1ade el directorio bin de couchbase a tu PATH (c:Archivos de ProgramaCouchbaseServerbin en Windows o \/Aplicaciones\/Couchbase Server.app\/Contenidos\/Recursos\/couchbase-core\/bin\/ si est\u00e1s en Mac)<\/p>\n<p>2- Inicie Visual Studio Code y \"Abra una carpeta\" - \u00e9sta se convertir\u00e1 en su directorio de trabajo.<\/p>\n<p>3- Edita tu archivo tasks.json con el siguiente JSON (el archivo tasks.json se crea en el directorio .vscode bajo la carpeta que has abierto - crea un archivo tasks.json si no lo ves ah\u00ed).<\/p>\n<pre>\r\n<code class=\"language-json\">{\r\n    \"version\": \"0.1.0\",\r\n    \"command\": \"go_cbq\",\r\n    \"args\": [\r\n     \"-e=https:\/\/10.0.0.44:8091\",\r\n     \"-f=${file}\"   \r\n        ],\r\n    \"showOutput\": \"always\",\r\n    \"isShellCommand\": true\r\n}<\/code><\/pre>\n<p>\u00a0<\/p>\n<p>- Abra un nuevo archivo .sql y edite algunas sentencias N1QL - estas listan los \u00edndices y buckets en el sistema.<\/p>\n<pre>\r\n<code class=\"language-sql\">SELECT * FROM system:indexes;\r\nSELECT * FROM system:keyspaces;\r\n<\/code><\/pre>\n<p>- Inicie la tarea de ejecuci\u00f3n: Usa CTRL-P en Windows o COMMAND-P en Mac y escribe \"task\" y un espacio. Selecciona la opci\u00f3n go_cbq. y \u00a1Bang! ver\u00e1s el <code>go_cbq<\/code> en la ventana de salida.<\/p>\n<p>La gente de Microsoft parece estar a\u00f1adiendo nuevas capacidades cada d\u00eda, as\u00ed que estoy seguro de que puedes hacerlo mejor que yo con la personalizaci\u00f3n de tareas. He aqu\u00ed c\u00f3mo se puede trabajar con <a href=\"https:\/\/code.visualstudio.com\/docs\/editor\/tasks\">tareas<\/a> en VS Code.<\/p>\n<p>Gracias a Jeff Morris por darme a conocer la herramienta.<\/p>\n<p>Feliz pirateo<\/p>","protected":false},"excerpt":{"rendered":"<p>Couchbase Server 4.5 and GO_CBQ With Couchbase Server 4.5, we are providing a new enhanced commandline query execution tool called &#8220;go_cbq&#8221;. The new binary comes with capabilities for scripting support, connection management and more. I have been using go_cbq for [&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-2195","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>Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution - 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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution\" \/>\n<meta property=\"og:description\" content=\"Couchbase Server 4.5 and GO_CBQ With Couchbase Server 4.5, we are providing a new enhanced commandline query execution tool called &#8220;go_cbq&#8221;. The new binary comes with capabilities for scripting support, connection management and more. I have been using go_cbq for [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/es\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-03-20T21:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-08T08:54:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2022\/11\/couchbase-nosql-dbaas.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1800\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\"},\"author\":{\"name\":\"Cihan Biyikoglu, Director of Product Management, Couchbase\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/3d8c60500ca29254fcdb2f76f29fb088\"},\"headline\":\"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution\",\"datePublished\":\"2016-03-20T21:30:00+00:00\",\"dateModified\":\"2021-07-08T08:54:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\"},\"wordCount\":410,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\",\"url\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\",\"name\":\"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution - The Couchbase Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"datePublished\":\"2016-03-20T21:30:00+00:00\",\"dateModified\":\"2021-07-08T08:54:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.couchbase.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution\"}]},{\"@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":"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution - 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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/","og_locale":"es_MX","og_type":"article","og_title":"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution","og_description":"Couchbase Server 4.5 and GO_CBQ With Couchbase Server 4.5, we are providing a new enhanced commandline query execution tool called &#8220;go_cbq&#8221;. The new binary comes with capabilities for scripting support, connection management and more. I have been using go_cbq for [&hellip;]","og_url":"https:\/\/www.couchbase.com\/blog\/es\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/","og_site_name":"The Couchbase Blog","article_published_time":"2016-03-20T21:30:00+00:00","article_modified_time":"2021-07-08T08:54:06+00:00","og_image":[{"width":1800,"height":630,"url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2022\/11\/couchbase-nosql-dbaas.png","type":"image\/png"}],"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":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/"},"author":{"name":"Cihan Biyikoglu, Director of Product Management, Couchbase","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/3d8c60500ca29254fcdb2f76f29fb088"},"headline":"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution","datePublished":"2016-03-20T21:30:00+00:00","dateModified":"2021-07-08T08:54:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/"},"wordCount":410,"commentCount":0,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/","url":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/","name":"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution - The Couchbase Blog","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","datePublished":"2016-03-20T21:30:00+00:00","dateModified":"2021-07-08T08:54:06+00:00","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#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\/integrating-n1ql-query-execution-with-visual-studio-code-on-mac-and-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Visual Studio Code, the Integrated SQL Editor and N1QL Query Execution"}]},{"@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\/2195","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=2195"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2195\/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=2195"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/categories?post=2195"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/tags?post=2195"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/ppma_author?post=2195"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}