In my code, I have set up a Meteor.setInterval within Meteor.startup that is supposed to run constantly. However, I've noticed that it stops being called when the site has been inactive for some time. It appears that Meteor detects no activity on the site and restarts the interval once a user interacts with the site again. I want the code in Meteor.setInterval to continue running even if there are no active viewers on the site. How can I ensure that it runs consistently regardless of user activity?