我在我的 mongodb 中重新发送了一些大量记录 这是示例
db.logins.find().pretty()
"cust_id" : "testuser",
"error" : "no error"
"cust_id" : "testuser",
"error" : "unable to connect"
"cust_id" : "sam",
"error" : "no error"
"cust_id" : "sdert",
"error" : "unable to connect"
当我这样做db.logins.find().pretty()
时,它会显示过去的记录(旧的)
我需要连续执行命令it
才能看到它们
我的问题是,我最初如何查看最新记录db.logins.find().pretty()
?