InterviewSolution
| 1. |
What Are Data Structures In Couchbase? |
|
Answer» Data STRUCTURES in COUCHBASE are SIMILAR in concept to data structures in JavaScript: Map is like a JavaScript Object, and is a key-value structure, where a value is accessed by using a key string. List is like a JavaScript array and is a sequential data structure. Values can be placed in the beginning or END of a list, and can be accessed using numeric indexes. Set is a wrapper over a list which provides the ability to handle unique values. Data structures in Couchbase are similar in concept to data structures in JavaScript: Map is like a JavaScript Object, and is a key-value structure, where a value is accessed by using a key string. List is like a JavaScript array and is a sequential data structure. Values can be placed in the beginning or end of a list, and can be accessed using numeric indexes. Set is a wrapper over a list which provides the ability to handle unique values. |
|