Hi there! Do you have any recommendations for "sch...
# server
l
Hi there! Do you have any recommendations for "scheduling/background jobs" framework other than Quartz? Ideally more kotlin-friendly.
b
I'm guessing something naive/simple like coroutines with delay wouldn't work for you?
h
l
@Big Chungus not really… because it needs storage support out of the box like Quartz or JobRun.
b
I usually just use k8s jobs for scheduling. Much easier to maintain than separate jvm service
But I appreciate that might not be applicable for your case.
c
I’ve been using this one as a replacement for Quartz which is much simpler: https://github.com/kagkarlsson/db-scheduler
👍 1