Du kan gøre det ved at bruge @Indexed
annotations expireAfterSeconds
attribut over et felt, hvis type er Date
.Omtrent:
@Document
public class SomeEntity {
String id;
@Field
@Indexed(name="someDateFieldIndex", expireAfterSeconds=3600)
Date someDateField;
// rest of code here
}
Eller ved at manipulere en MongoTemplate
:
mongoTemplate
.indexOps(SomeEntity.class)
.ensureIndex(new Index().on("someDateField", Sort.Direction.ASC).expire(3600));