couchbase - Insert Document Sync in couchbase - couchbase tutorial - couchbase lite
There are two basic ways in which you can Insert a document
- Create a document, Then insert it
- Use a Serialized object and Newtonsoft JSON.net
var bucket = cluster.OpenBucket("default");
var document = new Document<dynamic>
{
Id = "doc_net",
Content = new
{
name = "Roi",
lastName = "Katz",
someRandomField="Very important data!"
},
Expiry = 0, // TTL in ms
};
bucket.Insert(document);
Clicking "Copy Code" button will copy the code into the clipboard - memory. Please paste(Ctrl+V) it in your destination. The code will get pasted. Happy coding from Wikitechy Couchbase tutorial team
public class MyDataObject
{
public string Name { get; set; }
public int LastName { get; set; }
public string SomeRandomField { get; set; }
}
Clicking "Copy Code" button will copy the code into the clipboard - memory. Please paste(Ctrl+V) it in your destination. The code will get pasted. Happy coding from Wikitechy Couchbase tutorial team
And Use it to insert your data
var dataObject = new MyDataObject();
//...Fill up the object
bucket.Insert("MyUniqueDocumentKey", dataObject, 10); // Insert a document with 10 seconds TTL - or you can use a TimeSpan
Clicking "Copy Code" button will copy the code into the clipboard - memory. Please paste(Ctrl+V) it in your destination. The code will get pasted. Happy coding from Wikitechy Couchbase tutorial team
You can also sent persistence of replication factor while you insert the document

Learn Couchbase - Couchbase tutorial - Insert Document Sync in couchbase - Couchbase examples - Couchbase programs