主要概念,
数据库(db:use dbname;db.dropDatabase();show dbs;),
集合(collection:db.createCollection(“name”);db.collectionname.drop();show tables;show collections;),
文档(db.collectionname.insert(document);db.collectionname.save(document);db.collection.insertOne(document);collection.replaceOne(document);db.collection.insertMany(documents);db.collecion.update(query,update);db.collection.find(query).pretty().limit(num).skip(num).sort();db.collection.remove(query)),索引(index:db.collection.createIndex()),
聚合(aggregate:db.collection.aggregate())。
-
创建方式:db.collection.ensureIndex({w:“2d”})
-
插入数据:
-
$near查询:查询距离某个点最近的点。
-
$qeoWithin查询:查询某个形状内的点。
矩形
圆形
多边形,最少要三边
MongoDB有副本集及主从复制两种模式。
副本集
a. 需准备三个mongodb节点
b. 三个mongodb节点,需要设置备份配置
replication:
replSetName : rs0
c. 启动三个mongodb节点
d. 客户端进入mongodb主节点
使用 rs.initiate() 来指定副本集的所有成员
rs.initiate({
_id : "rs0",
members :[
{ _id : 0 , host: "192.168.1.1:27017"},
{ _id : 1 , host: "192.168.1.1:27019"},
{ _id : 2 , host: "192.168.1.1:27019"}
]
})
查看副本集配置
rs.conf()
查看副本集主副本信息
rs.status()
e. 应用MongoDB副本集
尝试关闭主节点
db.shutdownServer();
然后再查看剩下的两个副节点是否有一个成为新的节点
stateStr : "PRIMARY" 就是主节点