Możesz to zrobić za pomocą @Indexed
expireAfterSeconds
adnotacji atrybut nad polem, którego typ to Date
.Z grubsza:
@Document
public class SomeEntity {
String id;
@Field
@Indexed(name="someDateFieldIndex", expireAfterSeconds=3600)
Date someDateField;
// rest of code here
}
Lub manipulując MongoTemplate
:
mongoTemplate
.indexOps(SomeEntity.class)
.ensureIndex(new Index().on("someDateField", Sort.Direction.ASC).expire(3600));