Schedule recurring tasks with cron jobs.
confect/crons.ts
convex/crons.ts
import { cronJobs } from "convex/server"; import { internal } from "../convex/_generated/api"; const crons = cronJobs(); crons.interval( "clear stale sessions", { hours: 1 }, internal.sessions.clearStale, ); export default crons;