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
    评论
经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。
1. 智慧监狱概述 智慧监狱的建设背景基于监狱信息化的发展历程,从最初的数字化监狱到信息化监狱,最终发展到智慧监狱。智慧监狱强调管理的精细化、监管的一体化、改造的科学化以及办公的无纸化。政策上,自2017年以来,司法部连续发布了多项指导性文件,推动智慧监狱的建设。 2. 内在需求与挑战 智慧监狱的内在需求包括数据应用与共享的不足、安防系统的单一功能、IT架构的复杂性、信息安全建设的薄弱以及IT运维的人工依赖。这些挑战要求监狱系统进行改革,以实现数据的深度利用和业务的智能化。 3. 技术架构与设计 智慧监狱的技术架构包括统一门户、信息安全、综合运维、安防集成平台和大数据平台。设计上,智慧监狱采用云计算、物联网、大数据和人工智能等技术,实现资源的动态分配、业务的快速部署和安全的主动防护。 4. 数据治理与应用 监狱数据应用现状面临数据分散和共享不足的问题。智慧监狱通过构建数据共享交换体系、数据治理工具及服务,以及基于数据仓库的数据分析模型,提升了数据的利用效率和决策支持能力。 5. 安全与运维 智慧监狱的信息安全建设涵盖了大数据应用、安全管理区、业务区等多个层面,确保了数据的安全和系统的稳定运行。同时,综合运维平台的建立,实现了IT系统的统一管理和自动化运维,提高了运维效率和系统的可靠性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值