使用MongoVue创建生存时间索引

时间:2014-12-09 21:37:28

标签: mongodb mongovue

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,enter image description here

0 个答案:

没有答案