Book Image

Learning Couchbase

By : Henry Potsangbam
Book Image

Learning Couchbase

By: Henry Potsangbam

Overview of this book

This book achieves its goal by taking up an end-to-end development structure, right from understanding NOSQL document design to implementing full fledged eCommerce application design using Couchbase as a backend. Starting with the architecture of Couchbase to get you up and running, this book quickly takes you through designing a NoSQL document and implementing highly scalable applications using Java API. You will then be introduced to document design and get to know the various ways to administer Couchbase. Followed by this, learn to store documents using bucket. Moving on, you will then learn to store, retrieve and delete documents using smart client base on Java API. You will then retrieve documents using SQL like syntax call N1QL. Next, you will learn how to write map reduce base views. Finally, you will configure XDCR for disaster recovery and implement an eCommerce application using Couchbase.
Table of Contents (12 chapters)
Index

Using the document editor


Let's familiarize ourselves with the document editor provided in the Couchbase admin console. Let's create the document that was just discussed using the document editor. Make sure that you store the user and order documents as defined in the bucket, LearningCouchbase that we created earlier.

User

You can enter the User document using the document editor of the web console, as shown here:

The User document

Order

Just like User, enter the Order details as follows. Make sure that you select the LearningCouchbase bucket.

Order document

Now you know how to create a document using the document editor. Let me explain how you can update an attribute, say quantity, in the order document. Go to the LearningCouchbase bucket's document display list, as shown in the following screenshot. Key in its document ID, which is 2015051527, in the Lookup Id textbox, and click on the Lookup Id button.

Documents

Change the quantity from 6 to 8 and save it as follows:

The document editor - updating...