I want to have a weekly cleanup-query run on my DB.
i'm thinking about just using setInterval(), or installing another library to schedule the task.
now i wonder, does it take up much resources to have setInterval() run for weekly events? isn't that a whole lot of overhead, constantly checking? or does it not work that way, and i can safely set and forget it without worrying?
if there is no (or very little) downside to it, i won't bother with any modules, but i don't want to choke my server with unnecessary load