Có db.getCollectionNames()
phương pháp trợ giúp thực hiện điều này cho bạn. Sau đó, bạn có thể triển khai mã của mình:
db.getCollectionNames().forEach(function(collname) {
// find the last item in a collection
var last_element = db[collname].find().sort({_id:-1}).limit(1);
// check that it's not empty
if (last_element.hasNext()) {
// print its timestamp
printjson(last_element.next()._id.getTimestamp());
}
})
Bạn cũng có thể muốn một .hasNext()
kiểm tra ở đó để phục vụ cho các bộ sưu tập trống có thể có.