{"id":2452,"date":"2016-12-08T11:19:16","date_gmt":"2016-12-08T11:19:15","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/?p=2452"},"modified":"2025-10-09T06:45:39","modified_gmt":"2025-10-09T13:45:39","slug":"couchbase-net-sdk-2-3-10-now-available","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/","title":{"rendered":"Couchbase .NET SDK 2.3.10 Now Available!"},"content":{"rendered":"<p>Today we&#8217;re releasing version 2.3.10 of the Couchbase .NET SDK. This is a maintenance release of bug fixes and enhancements including the Data Structures API and FTS API. In case you missed it, we have a Developer Preview of .NET Core support <a href=\"https:\/\/www.couchbase.com\/blog\/introducing-couchbase-.net-sdk-core-2.4.0-dp1\/\">here<\/a>.<\/p>\n<h2 id=\"toc_0\">New Features and Changes<\/h2>\n<p>We follow semantic versioning, meaning we increment the dot-minor number when adding features. We sometimes add low-risk features in maintenance releases with uncommitted interface stability so you as a developer can easily gain access to new features. Features added under in a maintenance\u00a0release are uncommitted and are open to change but should be promoted to committed in the next dot-minor release.<\/p>\n<p>See <a href=\"https:\/\/developer.couchbase.com\/documentation\/server\/4.5\/sdk\/dotnet\/compatibility-versions-features.html#net-feature-matrix__d341e17\">here<\/a> for a discussion of interface in the .NET SDK.<\/p>\n<h3 id=\"toc_1\">Data Structures API update<\/h3>\n<p>When we introduced the Data Structures API in the 2.3.9 release we added support for lists, maps and dictionaries. In this release we&#8217;re also adding support for Queues. This enables you to use a JSON document stored in Couchbase to maintain an ordered FIFO queue, with all the normal concurrency control you would expect from an in-memory queue. An example on how to use a queue is below:<\/p>\n<pre><code class=\"language-cs\">bucket.QueuePush(\"my_queue\", new Person(\"Jerry\"));\r\nbucket.QueuePush(\"my_queue\", new Person(\"Rodney\"));\r\n\r\nvar size = bucket.QueueSize(\"my_queue\"); \/\/ 2\r\nvar person = bucket.QueuePop(\"my_Queue\"); \/\/ Jerry\r\n<\/code><\/pre>\n<p>Also, as part of the refinement of the uncommitted Data Structures API we have updated some method names to be consistent across all the Couchbase SDKs. The changes are below:<\/p>\n<table style=\"width: 250px\" border=\"1\">\n<thead>\n<tr>\n<th>Old<\/th>\n<th>New<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>ListPush<\/td>\n<td>ListAppend<\/td>\n<\/tr>\n<tr>\n<td>ListShift<\/td>\n<td>ListPrepend<\/td>\n<\/tr>\n<tr>\n<td>ListDelete<\/td>\n<td>ListRemove<\/td>\n<\/tr>\n<tr>\n<td>SetExists<\/td>\n<td>SetContains<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3 id=\"toc_2\">Sorting FTS results<\/h3>\n<p>An enhancement to the FTS (Full-Text Search) capabilities of Couchbase Server 4.6 is to allow the user to apply their own sorting preferences on the server before returning the result. This is done using the <strong>Sort<\/strong> method on ISearchParams before submitting a search. There can be one or more sorting fields, and fields that are prefixed with a dash indicate a descending order.<\/p>\n<pre><code>var searchParams = new SearchParams();\r\nsearchParams.Sort(\"name\", \"-age\");\r\n<\/code><\/pre>\n<p>The above example sort criteria indicates to sort by ascending name then by descending age.<\/p>\n<h3 id=\"toc_3\">Waiting for N1QL indexes<\/h3>\n<p>The SDK enables you as a developer to create N1QL indexes programmatically. However, indexes are created in an asynchronous manner on the server and executing queries against incomplete indexes is a bad idea. As part of this release we have introduced a way for the SDK to watch and wait for one or more indexes to go into the &#8216;online&#8217; state before continuing. An example of creating an index and waiting for it to be online is below:<\/p>\n<pre><code class=\"language-cs\">\/\/ Create index called \"accounts\" on columns \"account_id\" and \"account_name\"\r\nbucketManager.CreateN1qlIndex(\"accounts\", false, \"account_id\", \"account_name\");\r\n\r\n\/\/ Wait for the index to be marked as 'online', with a 30 second timeout\r\nvar indexNames = new List { \"accounts\" };\r\nbucketManager.WatchN1qlIndexes(indexNames, TimeSpan.FromSeconds(30));\r\n<\/code><\/pre>\n<h2>Release Notes<\/h2>\n<ul>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1104\">NCBC-1104<\/a>] &#8211; When SSL certificate is not setup correctly System.ArgumentException is thrown.<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1232\">NCBC-1232<\/a>] &#8211; NET client may not automatically re-prepare when an index is removed<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1233\">NCBC-1233<\/a>] &#8211; 2.3.9 assembly is not strongly named and does not have a publicKeyToken<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1236\">NCBC-1236<\/a>] &#8211; DotMemory unresolved reference from IntegrationTests<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1079\">NCBC-1079<\/a>] &#8211; streaming JSON parser for N1QL<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1204\">NCBC-1204<\/a>] &#8211; should use interface for Buckets property<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1237\">NCBC-1237<\/a>] &#8211; custom &#8220;sort&#8221; param for FTS<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1227\">NCBC-1227<\/a>] &#8211; QueuePush, QueuePop, and QueueSize to IBucket<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1036\">NCBC-1036<\/a>] &#8211; Create writeup on how to provision a cluster programmatically with code sample<\/li>\n<li>[<a href=\"https:\/\/issues.couchbase.com\/browse\/NCBC-1101\">NCBC-1101<\/a>] &#8211; WatchIndexes for index managment<\/li>\n<\/ul>\n<h2>How to Get It<\/h2>\n<p>As always, the Couchbase .NET SDK is available on\/by:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.nuget.org\/packages\/CouchbaseNetClient\/2.3.10\">NuGet<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/couchbase\/couchbase-net-client\/tree\/2.3.10\">GitHub<\/a><\/li>\n<li><a href=\"https:\/\/s3.amazonaws.com\/packages.couchbase.com\/clients\/net\/2.3\/Couchbase-Net-Client-2.3.10.zip\">Download<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Today we&#8217;re releasing version 2.3.10 of the Couchbase .NET SDK. This is a maintenance release of bug fixes and enhancements including the Data Structures API and FTS API. In case you missed it, we have a Developer Preview of .NET [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":13873,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1811],"tags":[],"ppma_author":[8968],"class_list":["post-2452","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dotnet"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.0 (Yoast SEO v26.0) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Couchbase .NET SDK 2.3.10 Now Available! - 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\/couchbase-net-sdk-2-3-10-now-available\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Couchbase .NET SDK 2.3.10 Now Available!\" \/>\n<meta property=\"og:description\" content=\"Today we&#8217;re releasing version 2.3.10 of the Couchbase .NET SDK. This is a maintenance release of bug fixes and enhancements including the Data Structures API and FTS API. In case you missed it, we have a Developer Preview of .NET [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-12-08T11:19:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-09T13:45:39+00:00\" \/>\n<meta name=\"author\" content=\"The Couchbase Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"The Couchbase Team\" \/>\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.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/\"},\"author\":{\"name\":\"The Couchbase Team\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/764f4a6771ee19bc7af70b70a326fb93\"},\"headline\":\"Couchbase .NET SDK 2.3.10 Now Available!\",\"datePublished\":\"2016-12-08T11:19:15+00:00\",\"dateModified\":\"2025-10-09T13:45:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/\"},\"wordCount\":517,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"articleSection\":[\".NET\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/\",\"url\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/\",\"name\":\"Couchbase .NET SDK 2.3.10 Now Available! - The Couchbase Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png\",\"datePublished\":\"2016-12-08T11:19:15+00:00\",\"dateModified\":\"2025-10-09T13:45:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#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\/couchbase-net-sdk-2-3-10-now-available\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.couchbase.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Couchbase .NET SDK 2.3.10 Now Available!\"}]},{\"@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\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#organization\",\"name\":\"The Couchbase Blog\",\"url\":\"https:\/\/www.couchbase.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@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\/764f4a6771ee19bc7af70b70a326fb93\",\"name\":\"The Couchbase Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/image\/7befc37d02226b59499817eafdec60c3\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b4c18c758421903398e84d6c9560f319f39c665798d7d23e6a6f9dff8a8f984e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b4c18c758421903398e84d6c9560f319f39c665798d7d23e6a6f9dff8a8f984e?s=96&d=mm&r=g\",\"caption\":\"The Couchbase Team\"},\"description\":\"Jennifer Garcia is a Senior Web Manager at Couchbase Inc. As the website manager, Jennifer has overall responsibility for the website properties including design, implementation, content, and performance.\",\"sameAs\":[\"https:\/\/www.couchbase.com\"],\"url\":\"https:\/\/www.couchbase.com\/blog\/author\/jennifer-garcia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Couchbase .NET SDK 2.3.10 Now Available! - 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\/couchbase-net-sdk-2-3-10-now-available\/","og_locale":"en_US","og_type":"article","og_title":"Couchbase .NET SDK 2.3.10 Now Available!","og_description":"Today we&#8217;re releasing version 2.3.10 of the Couchbase .NET SDK. This is a maintenance release of bug fixes and enhancements including the Data Structures API and FTS API. In case you missed it, we have a Developer Preview of .NET [&hellip;]","og_url":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/","og_site_name":"The Couchbase Blog","article_published_time":"2016-12-08T11:19:15+00:00","article_modified_time":"2025-10-09T13:45:39+00:00","author":"The Couchbase Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"The Couchbase Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/"},"author":{"name":"The Couchbase Team","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/764f4a6771ee19bc7af70b70a326fb93"},"headline":"Couchbase .NET SDK 2.3.10 Now Available!","datePublished":"2016-12-08T11:19:15+00:00","dateModified":"2025-10-09T13:45:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/"},"wordCount":517,"commentCount":0,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","articleSection":[".NET"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/","url":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/","name":"Couchbase .NET SDK 2.3.10 Now Available! - The Couchbase Blog","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2022\/11\/couchbase-nosql-dbaas.png","datePublished":"2016-12-08T11:19:15+00:00","dateModified":"2025-10-09T13:45:39+00:00","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.couchbase.com\/blog\/couchbase-net-sdk-2-3-10-now-available\/#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\/couchbase-net-sdk-2-3-10-now-available\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Couchbase .NET SDK 2.3.10 Now Available!"}]},{"@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":"en-US"},{"@type":"Organization","@id":"https:\/\/www.couchbase.com\/blog\/#organization","name":"The Couchbase Blog","url":"https:\/\/www.couchbase.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@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\/764f4a6771ee19bc7af70b70a326fb93","name":"The Couchbase Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/image\/7befc37d02226b59499817eafdec60c3","url":"https:\/\/secure.gravatar.com\/avatar\/b4c18c758421903398e84d6c9560f319f39c665798d7d23e6a6f9dff8a8f984e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b4c18c758421903398e84d6c9560f319f39c665798d7d23e6a6f9dff8a8f984e?s=96&d=mm&r=g","caption":"The Couchbase Team"},"description":"Jennifer Garcia is a Senior Web Manager at Couchbase Inc. As the website manager, Jennifer has overall responsibility for the website properties including design, implementation, content, and performance.","sameAs":["https:\/\/www.couchbase.com"],"url":"https:\/\/www.couchbase.com\/blog\/author\/jennifer-garcia\/"}]}},"authors":[{"term_id":8968,"user_id":2,"is_guest":0,"slug":"jennifer-garcia","display_name":"The Couchbase Team","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/b4c18c758421903398e84d6c9560f319f39c665798d7d23e6a6f9dff8a8f984e?s=96&d=mm&r=g","author_category":"","last_name":"Garcia","first_name":"Jennifer","job_title":"","user_url":"https:\/\/www.couchbase.com","description":"Jennifer Garcia is a Senior Web Manager at Couchbase Inc. As the website manager, Jennifer has overall responsibility for the website properties including design, implementation, content, and performance."}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/posts\/2452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/comments?post=2452"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/posts\/2452\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/media\/13873"}],"wp:attachment":[{"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/media?parent=2452"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/categories?post=2452"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/tags?post=2452"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=2452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}