javascript - Is it possible to have "setInterval" set too fast? - Stack Overflow

I have a setinterval function in my javascript that I want to be as fast as possible, i.e. check the st

I have a setinterval function in my javascript that I want to be as fast as possible, i.e. check the status of an event every 1ms. Is it possible that this would be asking too much from a user's browser? It seems to work just fine, but I am wondering if its a bad practice.

I have a setinterval function in my javascript that I want to be as fast as possible, i.e. check the status of an event every 1ms. Is it possible that this would be asking too much from a user's browser? It seems to work just fine, but I am wondering if its a bad practice.

Share Improve this question asked Oct 27, 2012 at 0:08 RafieRafie 5891 gold badge5 silver badges10 bronze badges 2
  • Yes it is posible, but not advicesable – Jeff Robert Dagala Commented Oct 27, 2012 at 0:13
  • OK so it seems the consensus is that I should not go with 1ms. Will do, thanks for the info everyone. – Rafie Commented Oct 27, 2012 at 0:29
Add a ment  | 

6 Answers 6

Reset to default 8

It is not only possible, it's quite mon. It's a race-condition by its very nature. If you depend on the code inside the callback to be executed before the next interval, use a recursive setTimeout instead.

Also, unless your interval is called lockUpBrowser, that duration between callbacks is likely much too short for realistic performance handling.

(function myRecursiveTask() {
    // Do your task here
    myTask();

    if (!someConditionToAllowABailOut) {
        setTimeout(myRecursiveTask, 100); // 100ms loop
    }
}());

setInterval is not guaranteed to execute at precisely the interval specified. It will execute as soon as possible, but since javasript is single-threaded and some other code may execute at this time your callback may be delayed.

If you're using setInterval with 1ms than you're probably trying to solve your problem in a wrong way.

Yes, if the function reference passed to setInterval takes longer to execute than the interval, calls to the function will queue and bog down the browser. If you're trying to perform an animation and want to change each step as fast as possible, there is a requestAnimationFrame function that should be used for modern browsers. Personally, I've never needed to perform a function faster than every 15ms.

I would certainly question the need for such an approach. What are you needing to check for every 1ms that you can't check for every 10ms, 100ms, or every second?

Are you 100% certain that the check functionality that you will run every will always execute in < 1ms such that you don't have multiple check processes stacking up to run.

How much memory and CPU does the process take, and are you going to potentially slow down the user's browser to the point where simply actions like scrolling bee painful for the user?

is an while loop too slow for you?

while (condition)
  {
  //code block to be executed
  }

i know i'm not ansering your question but, i think there is no better ways to do something like that...

Ben Cherry has a good article about this where he tests different browsers to find how fast setInterval can be before it bees unreliable. The speed at which a setInterval or setTimout fires is dependent on the browser.

In particular, if you’re looking for consistent timer intervals across browsers, you have to use something >15ms.

So if you can set the time greater than 15ms you won't run into problems.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743624697a4480345.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信