MongoDB Introduction, Installation and MongoDB Schema Design: How to Think Non-Relational

Key Points for Basic context of MongoDB(stoped at 30 minis or so):

The official site is here: http://www.mongodb.org/ and there is a web-based command line interface for trying the basic operations;

After download and unzip the gz file, then mkdir /mongodb/data;

To start the mongo db: ./bin/mongod --dbpath /mongodb/data

to connect the mongdb ./mongo which will connect to the localhost and test database by default;

To save a demo JSON data like this :       db.mycol.save{"name":"sch", "interests" : "mongdb" };

To retrive the demo data like this :            db.mycol.find() which no need to do any joins bewteeen tables;

To create a B-Tree index on interests:       db.mycol.ensureIndex({interests:1})  then db.mycol.find({Interest: Mongodb});

To explain the query plan:                        db.mycol.find({interest: Mongodb}).explain() ;

To created sparse index:                          db.shapes.ensureIndex({radius:1}, {sparse:true}) which will tell database not  to create index for the data that does not have this  field                                                        which is quite space saving and performance efficent

The 'dot' operator:                                    db.books.ensureIndex({comments.author:1}) //create index on mnested documents

                                                              db.books.find({comments.author: "sche"})

                                                              db.books.ensureIndex({comments.votes: 1})

                                                              db.books.ensureIndex({commnets.votes: {$gt: 50}}) //find all books iwht more than 50 votes 

 

In the above DB shell cmd. mycol does not need predefined in the MongoDB and it will automatically created by database;

There is a web site for mongodb which is:   localhost:28017;

To create an index on the "tags" array which it is called multi-key indexes;

Key Points for MongoDB Scheme

Ways to model data: normalize or denormalize

Comparision of RDBM and MONGODB
RDBMSMonggoDB
Table           Collection
RowsJSON document
IndexIndex
JoinEmbedding and Linking

Working with documents

Evolving a schema

Queries and indexed

Rich documents

compared with RDBMS(by contrast):  No need to access data from different locations and memory and tables,

                                     No need to worry about the wrong query plan which could impact the performance heavily

MongoDB is a JSON database and MongoDB shell is a javascript driven interacive interface;what is the BSON?

How can we manipulate the data?

Dynamic Queries

Secondary Indexes

Atomimc Updates

Map Reduce

No joins for MongoDb because it will make scalability horizontal impossible instead of only scalaer up(not out)

Query operators:

$ne,   $in,       $nin,    $mod,$all

$size, $exists, $tyep,  $lte

Conditional operators:

$set,        $inc,   $push,  $pop

$pushAll,  $pullAll

            Extending the Schema:

new_comment = {

author:   "schen",

data:      new Date(),

text:       "great book",

votes:     5

}

 

db.books.update(

{ text:"moon"},

{ '$push' : {comments:new_comment},    //for array purpose

   '$inc'   : {comments_count: 1}

}

)

One to Many Model

Embeded array/array keys

-$slice operator to return subset of array

-some queries hard

Embeded tree

-single docuement

-natural

-hard to query

normalized(2 collections)

-most flexible

-more queries

Referenceing vs. Embedding

-Embed when the 'many' objects always appear with their parents

-Refence when you need more felxibility

Many to Many Model

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值