justfunxin
justfunxin
i also write a annotation elastic job springboot starter,maybe you can take a look at it. https://github.com/kangarooxin/elastic-job3-spring-boot-starter
@TeslaCN I have used it in my work,the main code is here,I'm glad to make contributes to this project. 1. add config properties ```java @Getter @AllArgsConstructor(access = AccessLevel.PRIVATE) public final...
> Maybe we can refer to quartz. [quartz-scheduler/quartz#433](https://github.com/quartz-scheduler/quartz/issues/433) 90s is a example,how about 70s 100s,it‘s complicated when use cron expression.
[ElasticJob支持注解](https://www.jianshu.com/p/2b4b5f99845b)
Use lo.Chunk to implement batch function ```go func Batch[T any](s []T, size int, f func([]T, int) error) error { t := lo.Chunk(s, size) for i, v := range t {...