Category: Tools & SDKs
Couchbase .NET SDK 2.0 Developer Preview 3
As a follow to the previous DP2 in June, we are releasing another developer preview, DP3. This developer preview, adds a plethora of bug fixes, features and most importantly, changes to the public API by way of a) providing methods...
Couchbase .NET SDK 2.0 Developer Preview 1
At long last, we present the official Developer Preview 1 (DP1) for the Couchbase .NET 2.0 SDK! Previously, I posted about some of the motivation behind rewriting the Couchbase .NET SDK and also some of the goals and features you...
Couchbase .NET SDK 1.3.9 Released!
Today we released a very minor version 1.3.9 of the Couchbase .NET SDK with a single patch. With the .NET SDK 2.0 Beta just around the corner, priorities have shifted to 2.0 development and specifically: stamping out major bugs, documentation...
Couchbase .NET SDK 1.3.8 Released; Plus an Important Release Note!
Go through the Couchbase .NET SDK 1.3.8 Released which is a bug fix/maintanence release. Learn more about the important release of version 2.0.
Couchbase .NET SDK 1.3.7 Released and 2.X News!
SDK 1.3.7 Released Today Today we released a minor version of the .NET 1.X SDK: 1.3.7. This was a very small bug fix release and featured some contribitions from the community. A big thank you to the individuals who contributed...
Couchbase .NET Client 1.3.5 Released!
Hey folks, just a quick update that we have released version 1.3.5 of Couchbase .NET SDK! This a maintenance release and includes the following fixes: NCBC-438: Add finalizer to CouchbaseClient to ensure resources are released Add a destructor to CouchbaseClient...
Multiple Bucket Connections in Couchbase and Ruby
c = Couchbase.new(“https://localhost:8091/pools/default/buckets/my-bucket”) I believe it’s safe to say we are mostly all familiar with the above Ruby code. It establishes a connection from the Ruby SDK to a bucket of our choosing inside our Couchbase cluster. There are, of...
.NET Couchbase Client Instrumentation with ASP.NET and Glimpse
The .NET Client Library provides detailed error information by way of its IOperationResult interface. To find out why a store operation failed, use ExecuteStore instead of Store. var result = client.ExecuteStore(StoreMode.Add, “key”, “value”); if (! result.Success) { Console.WriteLine(“Operation failed with...
PHP SDK 2.0.0 Developer Preview
Over the past few months, the SDK development team has been working on defining a new interface for interacting with the SDKs, dubbed SDK 2.0 (not directly related to PHP SDK 2.0.0 which merely happens to implement a large portion...
Ruby on Rails and Couchbase-Model for a Social Application!
Learn how to model data with the Couchbase Rails gem Couchbase-Model and how we to Query Views to get specific subsets of data for use in our application.
Understanding group_level in View Queries with Compound Keys
Querying Views is what views are all about. Our documentation is great and can be found here: https://www.couchbase.com/docs/couchbase-manual-2.0/couchbase-views.html Compound Keys Just to illustrate how group level works, let’s use a Map function that sorts users by the latest login timestamp, converting...
Understanding Letter Ordering in View Queries
Map/Reduce Views are an important part of Couchbase 2.0 and understanding how to query them is also important. Our documentation is great and can be found here: https://www.couchbase.com/docs/couchbase-manual-2.0/couchbase-views.html One of the subtleties is understanding Unicode Collation ordering of letters which is...
Top Posts
- Optimizing Multi-Agent AI Systems With Couchbase
- Data Modeling Explained: Conceptual, Physical, Logical
- Data Analysis Methods: Qualitative vs. Quantitative Techniques
- What are Embedding Models? An Overview
- What Is Data Analysis? Types, Methods, and Tools for Research
- What are Vector Embeddings?
- Application Development Life Cycle (Phases and Management Models)
- A Breakdown of Graph RAG vs. Vector RAG
- High Availability Architecture: Requirements & Best Practice...