I need to run my recurring job for every 90 seconds (1min. 30 seconds). What is the CRON expression for this. Is it possible to do this?
The below code is scheduled my job in every 2 minutes. But i want to schedule for every 90 seconds (1min. 30 seconds)
RecurringJob.AddOrUpdate("Send Alert", x => x.SendAlert(null), "* /2 * * * *");