MongoDB: 引用另一个附加信息的文件
MongoDB: Reference another document with additional info attached
我有一种情况,我有一种组文档。我想要一个列表字段,其中包含对组中用户的引用 ID。但是,我需要指出哪些用户具有管理员访问权限。我应该有两个列表,一个是普通用户,一个是管理员,还是应该有一个自定义文档,我嵌入了一个列表,其中只有一个引用 ID 和一个 bool 值?这基本上是多对多的,两个文档都有一个对其他文档的引用 ID 列表。我只是不确定如何包含其他值。
如果有任何不同,我正在使用 Python/Mongoengine 访问 MongoDB
有多种方法可以在当前表单中对您的需求进行建模。我将尝试向您展示一种这样的方式并使用 $lookup。您应该尝试使用两个单独的集合,每个组和用户一个,如下所示。
另一种选择是使用 $DBRef,这将在您获取时急切地加载组中的所有用户组集合。此选项将取决于 python 驱动程序,我确定驱动程序支持它。
群组文档
{
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": ["user1", "user2"]
}
用户文档
{ "_id" : "user1", "isAdmin" : true }
{ "_id" : "user2" }
获取组中的所有用户
db.groups.aggregate({
$unwind: '$usersId'
}, {
$lookup: {
from: "users",
localField: "usersId",
foreignField: "_id",
as: "group_users"
}
})
回应
{
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": "user1",
"group_users": [{
"_id": "user1",
"isAdmin": true
}]
} {
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": "user2",
"group_users": [{
"_id": "user2"
}]
}
获取组中的所有管理员用户
db.groups.aggregate({
$unwind: '$usersId'
}, {
$lookup: {
from: "users",
localField: "usersId",
foreignField: "_id",
as: "group_users"
}
}, {
$match: {
"group_users.isAdmin": {
$exists: true
}
}
})
回应
{
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": "user1",
"group_users": [{
"_id": "user1",
"isAdmin": true
}]
}
基于评论:
The is admin is admin for the group, so I can't store it in the users
table. This is a many to many relationship.
我认为您应该包括普通用户列表和管理员用户列表。这将使用您添加的索引,并使您的读取查询非常简单。
群组文档
{ "_id" : "newGroup", "userIds" : [ "user1" ], "adminIds" : [ "user2" ] }
用户文档
{ "_id" : "user1", "groupIds" : [ "newGroup" ] } -- regular user in newGroup
{ "_id" : "user2", "groupIds" : [ "newGroup" ] } -- admin user in newGroup.
{ "_id" : "user3", "groupIds" : [ ] }
获取所有普通用户
db.groups.aggregate({
$unwind: '$userIds'
}, {
$lookup: {
from: "users",
localField: "userIds",
foreignField: "_id",
as: "group_users"
}
})
获取所有管理员用户
db.groups.aggregate({
$unwind: '$adminIds'
}, {
$lookup: {
from: "users",
localField: "adminIds",
foreignField: "_id",
as: "group_users"
}
})
我有一种情况,我有一种组文档。我想要一个列表字段,其中包含对组中用户的引用 ID。但是,我需要指出哪些用户具有管理员访问权限。我应该有两个列表,一个是普通用户,一个是管理员,还是应该有一个自定义文档,我嵌入了一个列表,其中只有一个引用 ID 和一个 bool 值?这基本上是多对多的,两个文档都有一个对其他文档的引用 ID 列表。我只是不确定如何包含其他值。
如果有任何不同,我正在使用 Python/Mongoengine 访问 MongoDB
有多种方法可以在当前表单中对您的需求进行建模。我将尝试向您展示一种这样的方式并使用 $lookup。您应该尝试使用两个单独的集合,每个组和用户一个,如下所示。
另一种选择是使用 $DBRef,这将在您获取时急切地加载组中的所有用户组集合。此选项将取决于 python 驱动程序,我确定驱动程序支持它。
群组文档
{
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": ["user1", "user2"]
}
用户文档
{ "_id" : "user1", "isAdmin" : true }
{ "_id" : "user2" }
获取组中的所有用户
db.groups.aggregate({
$unwind: '$usersId'
}, {
$lookup: {
from: "users",
localField: "usersId",
foreignField: "_id",
as: "group_users"
}
})
回应
{
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": "user1",
"group_users": [{
"_id": "user1",
"isAdmin": true
}]
} {
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": "user2",
"group_users": [{
"_id": "user2"
}]
}
获取组中的所有管理员用户
db.groups.aggregate({
$unwind: '$usersId'
}, {
$lookup: {
from: "users",
localField: "usersId",
foreignField: "_id",
as: "group_users"
}
}, {
$match: {
"group_users.isAdmin": {
$exists: true
}
}
})
回应
{
"_id": ObjectId("5857e7d5aceaaa5d2254aea2"),
"name": "newGroup",
"usersId": "user1",
"group_users": [{
"_id": "user1",
"isAdmin": true
}]
}
基于评论:
The is admin is admin for the group, so I can't store it in the users table. This is a many to many relationship.
我认为您应该包括普通用户列表和管理员用户列表。这将使用您添加的索引,并使您的读取查询非常简单。
群组文档
{ "_id" : "newGroup", "userIds" : [ "user1" ], "adminIds" : [ "user2" ] }
用户文档
{ "_id" : "user1", "groupIds" : [ "newGroup" ] } -- regular user in newGroup
{ "_id" : "user2", "groupIds" : [ "newGroup" ] } -- admin user in newGroup.
{ "_id" : "user3", "groupIds" : [ ] }
获取所有普通用户
db.groups.aggregate({
$unwind: '$userIds'
}, {
$lookup: {
from: "users",
localField: "userIds",
foreignField: "_id",
as: "group_users"
}
})
获取所有管理员用户
db.groups.aggregate({
$unwind: '$adminIds'
}, {
$lookup: {
from: "users",
localField: "adminIds",
foreignField: "_id",
as: "group_users"
}
})