bucket.upsert('xiaozhang', {"age":18, "sex": "boy"}, function(err, result) {
if (err) throw err;
console.log(result);
});
bucket.mapAdd('xiaozhang', "hobby","singing", function(err, result) {
if (err) throw err;
console.log(result);
});
bucket.mapSize('xiaozhang', function(err, result) {
if (err) throw err;
console.log(result.value);
});
bucket.mapGet('xiaozhang', "age", function(err, result) {
if (err) throw err;
console.log(result.value);
});
bucket.mapRemove('xiaozhang', "age", function(err, result) {
if (err) throw err;
console.log(result);
});