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 中有 expireAfterSeconds 索引,它会在一定时间后自动删除对象。我想知道MySQL中是否有这样的东西?
关于过期数据的 MongoDB 文档
不,您需要DELETE数据过期。
DELETE
您可以通过添加 DATETIME 字段来实现类似的功能,并在您的操作系统中运行计划任务(类 Unix 系统上的 cronjob)。
您甚至可以直接在 MySQL 中安排它: