If someone can help me with some good source or help article about the Cron expressions for Hangfire. I am willing to learn it since I have lot of work to do to create recurring jobs for different situations. Such as, maintenance jobs everyday and emails in batches with a gap of 30 minutes for three times and some similar tasks.
For example if you want run job every:
x minutes use ā0/x * * * *ā
x hourse use ā0 */x * * *ā you can set minutes also ā15 */x * * *ā
x days ā0 0 */x * *ā
etc.