给collection:AuthCode 设置过期时间Expire Date 为5分钟 :
db.AuthCode.ensureIndex({“createdAt”: 1},{expireAfterSeconds: 300})
步骤:
[root@app bin]# ./mongo 127.0.0.1:27017
MongoDB shell version: 3.0.6
connecting to: 127.0.0.1:27017/test
> use appdb
switched to db appdb
> db.auth("appUser","12345678")
1
> show collections
system.indexes
test
> db.createCollection('AuthCode')
{ "ok" : 1 }
> show collections
AuthCode
system.indexes
test
> db.AuthCode.ensureIndex({"createdAt": 1},{expireAfterSeconds: 300})
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}
> db.AuthCode.find()
{ "_id" : ObjectId("56f2538c65a85d5d2ce01d26"), "mobile" : "12345678901", "code" : "471892", "createdAt" : ISODate("2016-03-23T08:27:56.572Z") }
>
如果帮到了你,麻烦请下面留下您的痕迹,以作鼓励!
有问题可以私信我
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/164240.html