Cron Expression: Every second (requires Quartz / 6-field syntax)
Cron Expression
* * * * * *Every second (requires Quartz / 6-field syntax)
Click the expression to select it, then copy.
Quick Answer
The cron expression for "every second (requires quartz / 6-field syntax)" is `* * * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Second | * | Every second |
| Minute | * | Every minute |
| Hour | * | Every hour |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →Real-time systems (Spring Scheduler, Quartz)
- →Sub-second polling
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "* * * * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '* * * * * *'Linux crontab
* * * * * * /path/to/your-command.sh