Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
不久前,当我研究 MongoDB 时,我遇到了一篇文章,他们解释了如何能够插入记录但只保留 10 条(例如),所以一旦它达到 10 条记录,它就会删除最旧的记录并插入最新的记录。这一切都是在一个查询中完成的(至少我认为是这样)。
有人可以帮我举个例子吗?
听起来您想要一个有上限的集合。
db.createCollection("just_ten", {capped:true, max:10});