特点:
功能:
适用场合:
1 因为MongoDB是全索引的,所以它直接把索引放在内存中,因此最多支持2.5G的数据。如果是64位的会更多。
2 因为没有恢复机制,因此要做好数据备份
3 因为默认监听地址是127.0.0.1,因此要进行身份验证,否则不够安全;如果是自己使用,建议配置成localhost主机名
4 通过GetLastError确保变更。(这个不懂,实际中没用过)
MongoDB中存储的对象时BSON,是一种类似JSON的二进制文件,它是由许多的键值对组成。如下所示
{
"name" : "huangz",
"age" : 20,
"sex" : "male"
}
{
"name" : "jack",
"class" : 3,
"grade" : 3
}
而数据库的整体结构组成如下:
键值对--》文档--》集合--》数据库
MongoDB的文件单个大小不超过4M,但是新版本后可提升到16M
MongoDB中的key命名规则如下:
1 #进入数据库
use admin
2 #增加或修改密码
db.addUser('xingoo','123')
db.addUser("xingoo","123",true) 参数分别为 用户名、密码、是否只读
3 #查看用户列表
db.system.users.find()
4 #用户认证
db.auth('xingoo','123')
5 #删除用户
db.removeUser('xingoo')
6 #查看所有用户
show users
7 #查看所有数据库
show dbs
8 #查看所有的collection集合
show collections
9 #查看各个collection的状态
db.printCollectionStats()
10 #查看主从复制状态
db.printReplicationInfo()
11 #修复数据库
db.repairDatabase()
12 #设置profiling,0:off 1:slow 2 all
db.setProfilingLevel(1)
13 #查看profiling
show profiling
14 #拷贝数据库
db.copyDatabase('xingootest','xingootest1')
db.copyDatabase("xingootest","temp","127.0.0.1")
15 #删除集合collection
db.xingootest.drop()
16 #删除当前数据库
db.dropDatabase()
1 #存储嵌套的对象
db.foo.save({'name':xingoo,'age':25,'address':{'city':'changchun','Province':'Jilin'}})
2 #存储数组对象
db.foo.save({'name':xingoo,'age':25,'address':['Jilin Province','Liaoning Province']})
3 #根据query条件修改,如果不存在则插入,允许修改多条记录
db.foo.update({'age':'25'},{'$set':{'name':'xingoo'}},upsert=true,multi=true)
4 #删除yy=5的记录
db.foo.remove({'name':'xingoo'})
5 #删除所有的记录
db.foo.remove()
1 #增加索引:1 asc -1 desc
db.foo.ensureIndex({firstname:1,lastname:-1},{unieap:true})
2 #索引子对象(不懂)
db.foo.ensureIndex({'Al.Em':!})
3 #查看索引信息
db.foo.getIndexes()
db.foo.getIndexKeys()
4 #根据索引名删除索引(不懂)
db.foo.dropIndex('Al.Em_1')
条件操作符
1 $gt ---- > 2 $lt ---- < 3 $gte ---- >= 4 $lte ---- <= 5 $ne ---- != 、<> 6 $in ---- in 7 $nin ---- not in 8 $all ---- all 9 $or ---- or 10 $not ---- 反匹配
1 #查询所有记录
db.foo.find() ---- select * from foo
2 #查询某列非重复的记录
db.foo.distinct("xingoo") ---- select distinct name from foo
3 #查询age = 22 的记录
db.foo.find({"age":22}) ---- select * from foo where age = 22
4 #查询age > 22 的记录
db.foo.find({age:{$gt:22}}) ---- select * from foo where age > 22
5 #查询age < 22 的记录
db.foo.find({age:{$lt:22}}) ---- select * from foo where age < 22
6 #查询age <= 25的记录
db.foo.find({age:{$lte:25}})
7 #查询age >= 23 并且 age <=26的记录
db.foo.find({age:{gte:23,lte:26}})
8 #查询name中包含xingoo的数据
db.foo.find({name:/xingoo/}) ---- select * from foo where name like '%xingoo%'
9 #查询name中以xingoo开头的数据
db.foo.find({name:/^xingoo/}) ---- select * from foo where name like 'xingoo%'
10 #查询指定列name、age的数据
db.foo.find({},{name:1,age:1}) ---- select name,age from foo
11 #查询制定列name、age数据,并且age > 22
db.foo.find({age:{$gt:22}},{name:1,age:1}) ---- select name,age from foo where age >22
12 #按照年龄排序
升序:db.foo.find().sort({age:1}) 降序:db.foo.find().sort({age:-1})
13 #查询name=xingoo.age=25的数据
db.foo.find({name:'xingoo',age:22}) ---- select * from foo where name='xingoo' and age ='25'
14#查询前5条数据
db.foo.find().limit(5) ---- select top 5 * from foo
15 #查询10条以后的数据
db.foo.find().skip(10) ---- select * from foo where id not in (select top 10 * from foo);
16 #查询在5-10之间的数据
db.foo.find().limit(10).skip(5)
17 #or与查询
db.foo.find({$or:[{age:22},{age:25}]}) ---- select * from foo where age=22 or age =25
18 #查询第一条数据
db.foo.findOne() 、db.foo.find().limit(1)---- select top 1 * from foo
19 #查询某个结果集的记录条数
db.foo.find({age:{$gte:25}}).count() ---- select count(*) from foo where age >= 20
20 #按照某列进行排序(不懂)
db.foo.find({sex:{$exists:true}}).count() ---- select count(sex) from foo
21 #查询age取模10等于0的数据
db.foo.find('this.age % 10 == 0')、db.foo.find({age:{$mod:[10,0]}})
22 #匹配所有
db.foo.find({age:{$all:[22,25]}})
23 #查询不匹配name=X*带头的记录
db.foo.find({name:{$not:/^X.*/}})
24 #排除返回age字段
db.foo.find({name:'xingoo'},{age:0})
25 #判断字段是否存在
db.foo.find({name:{$exists:true}})
1 #查看collection数据大小
db.xingootest.dataSize()
2 #查看collection状态
db.xingootest.stats()
3 #查询所有索引的大小
db.xingootest.totalIndexSize()
> db.help(); ------DB methods
User相关的基本操作:
> show users ------查看所有用户
> db.system.users.find() ------查看用户列表
> db.addUser('name','pwd') ------增加或修改用户密码
> db.addUser("userName", "pwd123", true) ------添加用户、设置密码、是否只读
> db.auth("userName", "123123") ------数据库认证、安全模式
> db.removeUser('name') ------根据用户名删除用户
Database相关的基本操作:
> show dbs ------查看所有数据库
> use [db-name] ------当创建一个集合(table)的时候会自动创建当前数据库,这个指令相当于mysql的use [database-name]
> db.dropDatabase() ------删除当前的数据库
> db.repairDatabase() ------修复数据库
> db.copyDatabase('mail_addr','mail_addr_tmp') -----拷贝数据库
> db.copyDatabase("mydb", "temp", "127.0.0.1") ------将本机的mydb的数据复制到temp数据库中
> db.cloneDatabase(“127.0.0.1”) ------将指定机器上的数据库的数据克隆到当前数据库
Collection相关的基本操作:
> show collections ------查看所有的集合
> db.printReplicationInfo() ------查看主从复制状态
> db.mail_addr.drop() ------删除collection(mail_addr 是collections的名字)
> db.createCollection(“collectionName”, {size: 20, capped: 5, max: 100}) ------创建一个聚集集合
> db.getCollection("account") ------得到指定名称的聚集集合
> db.getCollectionNames() ------得到当前db的所有聚集集合
> db.printCollectionStats() ------查看各collection的状态
其它:
> db.user.help(); -----DBCollection help (此处的user表示的是我的collection的名字)
mongoDB数据的导入和导出
Mongodb中的mongoexport工具可以把一个collection导出成JSON格式或CSV格式的文件。可以通过参数指定导出的数据项,也可以根据指定的条件导出数据。
导出命令选项说明:
参数说明:
-type:指明要导入的文件格式
-headerline:指明第一行是列名,不需要导入
-file:指明要导入的文件
MongoDB的数据备份和恢复
用mongodump 来做MongoDB 的库或表级别的备份
备份选项说明(sudo ./mongodump --help):
恢复选项说明(sudo ./mongorestore --help):