MongoVue 1.6.9.0
我使用MongoVue连接到MongoDB。 我需要在集合上创建一个TTL索引,我尝试使用“添加新索引”创建。 一旦我通过添加
创建索引{ "createdOn": 1 }, { expireAfterSeconds: 3600 }
学习shell显示执行的查询
db.ClaimDetails.ensureIndex({ "createdAt" : 1 },{ "name" : "TTL2" });
不会创建expireAfterSeconds。
你能帮忙看看如何使用MongoVue放置expireAfterSeconds。
提前致谢。
Mongo 2.6.4,