Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to fix a set in MongoDB

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

MongoDB how to fix the collection, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.

The so-called fixed set is to specify the size of the collection, and if the content to be saved exceeds the length of the collection, then LRU's algorithm (recent least use principle) will be used to remove the earliest data, thus saving the new data.

By default, a collection can be created using the createCollection () function, or automatically after adding data, but if you want to use a fixed collection, you must explicitly create an empty collection.

Example: create an empty collection (fixed collection)

> db.createCollection ("dept", {"capped": true, "size": 1024, "max": 5})

{"ok": 1}

Where "capped": true is represented as a fixed collection, "size": 1024 refers to the space capacity occupied by the collection (in bytes), and "max": 5 means that there can be up to five records.

Example: save 5 pieces of data to the collection

Db.dept.insert ({"deptno": 10, "dname": "Finance Department", "loc": "Beijing"})

Db.dept.insert ({"deptno": 11, "dname": "Finance Department", "loc": "Beijing"})

Db.dept.insert ({"deptno": 12, "dname": "Finance Department", "loc": "Beijing"})

Db.dept.insert ({"deptno": 13, "dname": "Finance Department", "loc": "Beijing"})

Db.dept.insert ({"deptno": 14, "dname": "Finance Department", "loc": "Beijing"})

> db.dept.find ()

{"_ id": ObjectId ("599504e70184ff511bf02be0"), "deptno": 10, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e70184ff511bf02be1"), "deptno": 11, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e70184ff511bf02be2"), "deptno": 12, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e70184ff511bf02be3"), "deptno": 13, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e80184ff511bf02be4"), "deptno": 14, "dname": "Finance Department", "loc": "Beijing"}

Now that the upper limit of the collection has been reached, continue to save the new content:

> db.dept.insert ({"deptno": 16, "dname": "Finance Department", "loc": "Beijing"})

WriteResult ({"nInserted": 1})

> db.dept.find ()

{"_ id": ObjectId ("599504e70184ff511bf02be1"), "deptno": 11, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e70184ff511bf02be2"), "deptno": 12, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e70184ff511bf02be3"), "deptno": 13, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599504e80184ff511bf02be4"), "deptno": 14, "dname": "Finance Department", "loc": "Beijing"}

{"_ id": ObjectId ("599505240184ff511bf02be5"), "deptno": 16, "dname": "Finance Department", "loc": "Beijing"}

Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report