mongodb ttl索引

时间:2021-09-15 18:23:57   收藏:0   阅读:34

mongodb ttl索引

作用

所有可以通过指定data类型的数据值进行自动删除所谓的过期数据

创建索引

创建索引
collection 集合名

createTime 字段名,且类型为data

expireAfterSeconds 过期时间,单位是秒

db.collection.createIndex({"createTime":1},{expireAfterSeconds:6})

Demo

技术分享图片

修改索引

collection 集合名

createTime ttl 索引字段 类型为data

expireAfterSeconds 过期时间,单位是秒

db.runCommand({ collMod: "collection", index: { keyPattern: { createTime: 1 },expireAfterSeconds: 7}})

Demo

技术分享图片

查看索引

collection 集合名

db.collection.getIndexes()

Demo

技术分享图片

删除索引

db.collection.dropIndex("索引名")

Demo

技术分享图片

备注

插入数据命令Demo: db.test1.insert( {"_insert_time": new Date(),"logEvent": 2,"logMessage": "Success!"} )

mongdb 默认时区是UTC,晚北京时间8h

原文:https://www.cnblogs.com/MDD-Blog/p/15265726.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!