Bạn có thể làm điều đó bằng cách sử dụng @Indexed
expireAfterSeconds
của chú thích thuộc tính trên một trường có kiểu là Date
.Roughly:
@Document
public class SomeEntity {
String id;
@Field
@Indexed(name="someDateFieldIndex", expireAfterSeconds=3600)
Date someDateField;
// rest of code here
}
Hoặc bằng cách thao tác MongoTemplate
:
mongoTemplate
.indexOps(SomeEntity.class)
.ensureIndex(new Index().on("someDateField", Sort.Direction.ASC).expire(3600));