私はcron式を初めて使用します。1日ごとに午後5時、午前1時、午後2時45分に実行されるHangfireで繰り返し実行されるジョブのcronを作成する方法を知っている必要があります。
Hangfireは標準のCronExpressionも受け入れることを理解して、この頻度のcron式を探索してみましたが、それを見つけることができませんでした- https://en.wikipedia.org/wiki/Cron 方法を知っていますそれは15分間行われますか? */15 * * * *毎日実行する必要があります。
Cronjob schedularで使用される一般的な構文は次のとおりです。
# Execute the <b>command</b> every minute of every day.
* * * * * command
Cronjob schedularで使用されるすべてのフィールドの説明:
# field # meaning allowed values
# ------- ------------ --------------
# 1 minute 0-59
# 2 hour 0-23
# 3 day of month 1-31
# 4 month 1-12 (or names, see below)
# 5 day of week 0-7 (0 or 7 is Sun, or use names)
最初の5つのフィールドの代わりに、8つの特殊文字列の1つを使用できます。
string meaning
------ -------
@reboot Run once, at startup.
@yearly Run once a year, "0 0 1 1 *".
@annually (same as @yearly)
@monthly Run once a month, "0 0 1 * *".
@weekly Run once a week, "0 0 * * 0".
@daily Run once a day, "0 0 * * *".
@midnight (same as @daily)
@hourly Run once an hour, "0 * * * *".
間隔を置いてジョブを繰り返すには / 使用されている :
*/15 * * * * command
# This will execute the command after every 15 minutes.
特定の時間にジョブを実行するため 、 使用できます:
* 2,20 * * * command
# This will execute the job every minute but at the hours 2 AM and 8 PM.
あなたの疑問が解消されることを願っています。
私は次のようにしています:
RecurringJob.AddOrUpdate(() => Console.Write("Recurring"), "*/15 * * * *");