我想使用mongodb数据库,但我注意到有两个不同的数据库,它们都有自己的网站和安装方法:mongodb和mongoose。所以我开始问自己这个问题:“我该用哪一个?”
所以为了回答这个问题,我问社区是否可以解释这两者之间的区别?如果可能的话,有利有弊?因为在我看来他们真的很像。
我想使用mongodb数据库,但我注意到有两个不同的数据库,它们都有自己的网站和安装方法:mongodb和mongoose。所以我开始问自己这个问题:“我该用哪一个?”
所以为了回答这个问题,我问社区是否可以解释这两者之间的区别?如果可能的话,有利有弊?因为在我看来他们真的很像。
当前回答
Mongo是NoSQL数据库。
如果你不想为你的数据模型使用任何ORM,那么你也可以使用本地驱动程序mongo.js: https://github.com/mongodb/node-mongodb-native。
Mongoose是orm中的一种,它为我们提供了简单易懂的查询来访问mongo数据的功能。
Mongoose在数据库模型上扮演抽象的角色。
其他回答
从第一个答案来看,
使用Mongoose,用户可以为特定集合中的文档定义模式。它为MongoDB中的数据创建和管理提供了很多便利。”
您现在还可以使用mongoDB本地驱动程序定义模式
##新收藏
db.createCollection("recipes",
validator: { $jsonSchema: {
<<Validation Rules>>
}
}
)
##对于现有的集合
db.runCommand({
collMod: "recipes",
validator: { $jsonSchema: {
<<Validation Rules>>
}
}
})
# #完整的示例
db.createCollection("recipes", {
validator: {
$jsonSchema: {
bsonType: "object",
required: ["name", "servings", "ingredients"],
additionalProperties: false,
properties: {
_id: {},
name: {
bsonType: "string",
description: "'name' is required and is a string"
},
servings: {
bsonType: ["int", "double"],
minimum: 0,
description:
"'servings' is required and must be an integer with a minimum of zero."
},
cooking_method: {
enum: [
"broil",
"grill",
"roast",
"bake",
"saute",
"pan-fry",
"deep-fry",
"poach",
"simmer",
"boil",
"steam",
"braise",
"stew"
],
description:
"'cooking_method' is optional but, if used, must be one of the listed options."
},
ingredients: {
bsonType: ["array"],
minItems: 1,
maxItems: 50,
items: {
bsonType: ["object"],
required: ["quantity", "measure", "ingredient"],
additionalProperties: false,
description: "'ingredients' must contain the stated fields.",
properties: {
quantity: {
bsonType: ["int", "double", "decimal"],
description:
"'quantity' is required and is of double or decimal type"
},
measure: {
enum: ["tsp", "Tbsp", "cup", "ounce", "pound", "each"],
description:
"'measure' is required and can only be one of the given enum values"
},
ingredient: {
bsonType: "string",
description: "'ingredient' is required and is a string"
},
format: {
bsonType: "string",
description:
"'format' is an optional field of type string, e.g. chopped or diced"
}
}
}
}
}
}
}
});
插入集合
db.recipes.insertOne({
name: "Chocolate Sponge Cake Filling",
servings: 4,
ingredients: [
{
quantity: 7,
measure: "ounce",
ingredient: "bittersweet chocolate",
format: "chopped"
},
{ quantity: 2, measure: "cup", ingredient: "heavy cream" }
]
});
Mongodb和Mongoose是与Mongodb数据库交互的两种不同的驱动程序。
Mongoose:对象数据建模(ODM)库,为您的数据提供严格的建模环境。它用于与MongoDB交互,通过提供管理数据的便利,使生活更加轻松。
Mongodb: Node.js中与Mongodb交互的原生驱动。
Mongoose是在mongodb驱动的基础上构建的,mongodb驱动的层次比较低。Mongoose提供了简单的抽象来轻松定义模式和查询。但是在性能方面,Mongdb Driver是最好的。
对于新开发人员来说,mongodb -db可能不是一个很好的选择。 另一方面,mongoose作为ORM(对象关系映射)对于新手来说是一个更好的选择。
我发现两者之间的另一个区别是,使用mongodb本地驱动程序连接多个数据库相当容易,而在mongoose中使用仍然有一些缺点的工作方法。
所以如果你想要一个多租户应用程序,选择mongodb原生驱动。