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.