TTL索引(time-to-live index)允许为每一个文档设置一个超时时间,文档超过这个时间就会被删除。在ensureIndex中指定expireAfterSecs选项就可以创建一个TTL索引:&g
TTL索引(time-to-live index)允许为每一个文档设置一个超时时间,文档超过这个时间就会被删除。
在ensureIndex中指定expireAfterSecs选项就可以创建一个TTL索引:
>db.foo.ensureIndex({“lastUpdated”:1},{“expireAfterSecs”:60*60*24})
上述命令就为集合foo的lastUpdated字段上创建了一个TTL索引,如果文档的lastUpdated字段为日期类型,当服务器的时间比文档的lastUpdated字段中的时间晚24小时,文档就会被删除。
当TTL建立后可以使用collMod命令修改TTL索引的超时时间:
>db.runCommand({“collMod”:”indexName”,”lastUpdated”:3600)
--结束END--
本文标题: 【MongoDB学习笔记27】MongoDB的TTL索引
本文链接: https://lsjlt.com/news/43821.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0