当前位置:网站首页> MongoDB数据库基础知识整理
MongoDB数据库基础知识整理
2022-07-07 13:11:00 【1024问】
了解Mongodb之前先了解一下NoSQL,NoSQL是Not Only SQL的缩写。由提供缺乏SQL关系数据库的严格限制模型的存储和检索技术组成。主要是简化设计、水平扩展以及对数据的可用性进行更精细的控制。NoSQL有多种技术例如:Redis的键值结构、HBase的列结构等。
二、MongodbMongodb也是NoSQL的一种。它基于的文档模型把数据对象作为一个集合中单独的文档来存储。用它来提供高性能、高可用性和自动扩展的数据存储。
三、集合Mongodb通过使用集合将数据分组在一起。集合仅仅是一组具有相同或类似用途的文档。集合类似于传统SQL数据库的表。只是集合不执行严格的模式,同一集合中的文档可以具有彼此略微不同的结构。
四、文档文档是Mongodb数据库中单个数据实体的表示。SQL的行数据是平坦的,行中的每个值都有一个列。在Mongodb中文档可以包含嵌入子文档,从而为应用程序提供更密切的内在数据模型。在Mongodb中代表文档的记录被存储为BSON,这是JSON的一个轻量级的二进制形式。它的字段/值对应于Javascript的属性和值。同时在MongoDB中文档的最大大小是16MB。这可以防止RAM使用过量或对文件系统产生剧烈冲击。
此外,文档的字段名不能包含(null)字符、句点(.)或美元符号($)._id字段名是为对象的ID保留的。该_id字段是系统中的一个唯一的ID,它由以下几个部分组成:
1.一个4字节的值,代表从纪元以来过去的秒数。
2.一个3字节的机器标识符
3.一个2字节的进程ID
4.一个3字节的计数器,从一个随机值开始
五、Mongodb数据类型Mongodb为每一种数据类型分配了从1到255的整数ID号,可使用它来按类型查询。
Double | 双精度数值 | 1 |
String | 字符串 | 2 |
Object | 对象 | 3 |
Array | 数组 | 4 |
Binary data | 二进制数据 | 5 |
Object id | 对象ID | 7 |
Boolean | 布尔值 | 8 |
Date | 日期 | 9 |
Null | 空值 | 10 |
Regular Expression | 正则表达式 | 11 |
JavaScript | Javascript | 13 |
Symbol | 符号 | 14 |
JavaScript(with scope) | Javascript(带作用域) | 15 |
32-bit intger | 32位整数 | 16 |
Timestamp | 时间戳 | 17 |
64-bit integer | 64位整数 | 18 |
Min Key | 最小值 | 255 |
Max Key | 最大值 | 127 |
当比较不同的BSON类型的值时,Nongodb使用下面的比较顺序从最低到最高:
1.最小键(内部类型)
2.空值
3.数值
4.符号、字符串
5.对象
6.数组
7.二进制数据
8.对象ID
9.布尔值
10.日期,时间戳
11.正则表达式
12.最大键(内部类型)
到此这篇关于MongoDB数据库基础的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持软件开发网。
边栏推荐
- Today's sleep quality record 78 points
- Why do we use UTF-8 encoding?
- Bye, Dachang! I'm going to the factory today
- "July 2022" Wukong editor update record
- JSON parsing instance (QT including source code)
- Stm32cubemx, 68 sets of components, following 10 open source protocols
- Compile advanced notes
- PAT 甲级 1103 Integer Factorizatio
- Summer safety is very important! Emergency safety education enters kindergarten
- Win10 or win11 taskbar, automatically hidden and transparent
猜你喜欢
[data mining] visual pattern mining: hog feature + cosine similarity /k-means clustering
Change win10 Screensaver
Ctfshow, information collection: web9
Niuke real problem programming - day13
众昂矿业:萤石继续引领新能源市场增长
Niuke real problem programming - Day11
Cocoscreator operates spine for animation fusion
Niuke real problem programming - day20
CTFshow,信息搜集:web9
[understanding of opportunity -40]: direction, rules, choice, effort, fairness, cognition, ability, action, read the five layers of perception of 3GPP 6G white paper
随机推荐
STM32F103C8T6 PWM驱动舵机(SG90)
Niuke real problem programming - Day9
【数据挖掘】视觉模式挖掘:Hog特征+余弦相似度/k-means聚类
Guangzhou Development Zone enables geographical indication products to help rural revitalization
Computer win7 system desktop icon is too large, how to turn it down
How bad can a programmer be? Nima, they are all talents
CTFshow,信息搜集:web10
Novel Slot Detection: A Benchmark for Discovering Unknown Slot Types in the Dialogue System
"Baidu Cup" CTF competition 2017 February, web:include
Bits and Information & integer notes
What is the process of ⼀ objects from loading into JVM to being cleared by GC?
Jetson AGX Orin CANFD 使用
防火墙基础之服务器区的防护策略
Notes HCIA
Pinduoduo lost the lawsuit, and the case of bargain price difference of 0.9% was sentenced; Wechat internal test, the same mobile phone number can register two account functions; 2022 fields Awards an
FFmpeg----图片处理
Delete a whole page in word
JSON parsing instance (QT including source code)
Summer safety is very important! Emergency safety education enters kindergarten
PAT 甲级 1103 Integer Factorizatio