Ape.setTimeout is extremely slow! If I call recursivly 10000 times the
same function with setTimeout it takes 10 seconds. If I call 10000 an
SQL SELECT 1 where the callback is the function itself it takes 0.9s.

is there a better way to call a function asyncrhounsly?

This is the code to test it:



//########################   setTimeout
var start;
test();
function test(i)
{
        if(i<10000)
                Ape.setTimeout(test,0,i+1);
        else
                Ape.log("test done in "+($time()-start)/1000+ "seconds");
};

//########################   mysql
var start;
test();
function test(i)
{
        if(i<10000)
                sql.query("SELECT 1",function(){
                        test2(i+1);
                });
        else
                Ape.log("test done in "+($time()-start)/1000+ "seconds");
};

-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to