简体   繁体   中英

MongoDB limit the collection size

Do we have a limiting option for collections? Maximum 10 rows(objects) for example. If I insert one more row and if there are already more than ten rows in the collection, the oldest one pops out and deleted?

you can limit the number of documents with Capped Collections :

db.createCollection("log", { capped : true, size : in_bytes, max : number_docs } )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM