所有可以通过指定data类型的数据值进行自动删除所谓的过期数据
创建索引 collection 集合名 createTime 字段名,且类型为data expireAfterSeconds 过期时间,单位是秒 db.collection.createIndex({"createTime":1},{expireAfterSeconds:6})
collection 集合名 createTime ttl 索引字段 类型为data expireAfterSeconds 过期时间,单位是秒 db.runCommand({ collMod: "collection", index: { keyPattern: { createTime: 1 },expireAfterSeconds: 7}})
collection 集合名 db.collection.getIndexes()
db.collection.dropIndex("索引名")