CRON for Erlang. Which is better?

Hello all!

Trying to choose CRON application for Erlang. Found this projects:
GitHub - ausimian/crone: Cron for Erlang
GitHub - erlware/erlcron: Erlang cronish system

Which is better to use? Is there any other cron applications?

1 Like

There is also the ecron application.

3 Likes

I’ve been using erlware/erlcron. It’s very simple to integrate into your project. It’s smallest resolution is 24 hours. Clean codebase too.

Not quite sure what you mean by this - erlcron supports different types of schedules: once, period expressed in hours/minuetes/seconds, days, weeks, months, days-of-week. The smallest resolution is 1 second. erlcron is quite stable and used in many production projects.

1 Like