Authored by wangnan

修改建索引时间为每5分钟

... ... @@ -24,9 +24,9 @@ public class IndexRebuildJob {
/**
* 定时任务重建所有索引(每小时执行一次)
* 定时任务重建所有索引(每5分钟执行一次)
*/
@Scheduled(cron = "0 0 0/1 * * ? ")
@Scheduled(cron = "0 0/5 * * * ?")
public void execute() {
long begin = System.currentTimeMillis();
logger.info("indexRebuildJob execute start----[begin={}]", begin);
... ...