Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MongoDB有什么方法可以根据时间自动处理文档的删除?
我使用 Tornado (Python) 并且IOLoop可以做到,但它总是检查时间,并且这些文档的生命周期很长(6 mounth),
IOLoop
那么Mongodb可以在不制作可点击脚本或使用IOLoop的情况下做到这一点吗?
是的,这是一个称为 TTL(生存时间)索引的功能(2.1 中的新功能)。
您可以阅读所有关于它们的信息,包括此处的示例:
http://docs.mongodb.org/manual/tutorial/expire-data/