在本页面
db.collection.deleteMany(
<filter>,
{
writeConcern: <document>,
collation: <document>
}
)
参数 | 类型 | 描述 |
---|---|---|
filter |
document | 使用query operators指定删除条件。 要删除集合中的所有文档,请传入一个空文档( { } )。 |
writeConcern |
document | 可选的。表示写关注的文件。省略使用默认写入问题。 |
collation |
document | 可选的。 指定要用于操作的整理。 整理允许用户为 string 比较指定 language-specific 规则,例如字母和重音标记的规则。 排序规则选项具有以下语法: 排序规则:{ locale:<string>, caseLevel:<boolean>, caseFirst:<string>, strength:<int>, numericOrdering:<boolean>, alternate:<string>, maxVariable:<string>, backwards :<boolean> } 指定排序规则时, locale 字段是必填字段;所有其他校对字段都是可选的。有关字段的说明,请参阅整理文件。 如果未指定排序规则但集合具有默认排序规则(请参阅db.createCollection()),则操作将使用为集合指定的排序规则。 如果没有为集合或操作指定排序规则,MongoDB 使用先前版本中用于 string 比较的简单二进制比较。 您无法为操作指定多个排序规则。对于 example,您不能为每个字段指定不同的排序规则,或者如果使用排序执行查找,则不能对查找使用一个排序规则,而对排序使用另一个排序规则。 version 3.4 中的新内容。 |
返回: | 包含以下内容的文档: boolean acknowledged as true 如果操作使用写关注或false 运行,如果写入关注被禁用deletedCount 包含已删除文档的数量 |
行为
上限集合
如果在上限集合上使用,deleteMany()会抛出WriteError
exception。要从上限集合中删除所有文档,请改用db.collection.drop()。
删除单个文档
要删除单个文档,请改用db.collection.deleteOne()。
或者,使用独特的指数的一部分字段,例如_id
。
事务
db.collection.deleteMany()
可以在多文档事务中使用。
如果在事务中运行,请不要为操作明确设置写关注点。要对事务使用写关注,请参见 事务和写关注。
重要
在大多数情况下,与单文档写入相比,多文档事务产生的性能成本更高,并且多文档事务的可用性不应替代有效的架构设计。在许多情况下, 非规范化数据模型(嵌入式文档和数组)将继续是您的数据和用例的最佳选择。也就是说,在许多情况下,适当地对数据建模将最大程度地减少对多文档交易的需求。
有关其他事务使用方面的注意事项(例如运行时限制和操作日志大小限制),另请参见 生产注意事项。
例子
删除多个文档
orders
集合包含具有以下结构的文档:
{
_id: ObjectId("563237a41a4d68582c2509da"),
stock: "Brent Crude Futures",
qty: 250,
type: "buy-limit",
limit: 48.90,
creationts: ISODate("2015-11-01T12:30:15Z"),
expiryts: ISODate("2015-11-01T12:35:15Z"),
client: "Crude Traders Inc."
}
以下操作将删除client : "Crude Traders Inc."
所有文档:
try {
db.orders.deleteMany( { "client" : "Crude Traders Inc." } );
} catch (e) {
print (e);
}
操作返回:
{ "acknowledged" : true, "deletedCount" : 10 }
以下操作将删除stock : "Brent Crude Futures"
和limit
大于48.88
的所有文档:
try {
db.orders.deleteMany( { "stock" : "Brent Crude Futures", "limit" : { $gt : 48.88 } } );
} catch (e) {
print (e);
}
操作返回:
{ "acknowledged" : true, "deletedCount" : 8 }
写作关注 deleteMany()
给定三个成员副本集,以下操作指定majority
majority
和wtimeout
100
:
try {
db.orders.deleteMany(
{ "client" : "Crude Traders Inc." },
{ w : "majority", wtimeout : 100 }
);
} catch (e) {
print (e);
}
如果确认时间超过wtimeout
限制,则抛出以下 exception:
WriteConcernError({
"code" : 64,
"errInfo" : {
"wtimeout" : true
},
"errmsg" : "waiting for replication timed out"
})
指定排序规则
version 3.4 中的新内容。
整理允许用户为 string 比较指定 language-specific 规则,例如字母和重音标记的规则。
集合myColl
具有以下文档:
{ _id: 1, category: "café", status: "A" }
{ _id: 2, category: "cafe", status: "a" }
{ _id: 3, category: "cafE", status: "a" }
以下操作包括整理选项:
db.myColl.deleteMany(
{ category: "cafe", status: "A" },
{ collation: { locale: "fr", strength: 1 } }
)
译者:李冠飞
校对:
参见