标签:style color 使用 ar 时间 python rgb type
python中需要使用utc时间
mongo.exe命令
db.sms_ttl.ensureIndex({"createdAt": 1}, {expireAfterSeconds: 600})
pymongo操作
db.sms_ttl.insert({"createdAt": datetime.utcnow(), "type": "sms-auth", "phone":"", "auth_code":"", })
中国和utc时间正好差8小时,如果图方便就直接加
中国时间=utc时间+8小时
要注意的是,如果用mongo.exe命令来增加的时间是utc时间,用pymongo也要用utc时间
如果都是pymongo进行操作,就无所谓什么时间了
mongodb和python的datetime的差异,布布扣,bubuko.com
标签:style color 使用 ar 时间 python rgb type
原文地址:http://my.oschina.net/1123581321/blog/296433