r20446: rename swat directory to swat.obsolete; keeping it around since there is...
[samba.git] / swat.obsolete / apps / qooxdoo-examples / performance / LocalObject_5.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4   <title>qooxdoo &raquo; Demo</title>
5   <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
6   <!--[if IE]>
7   <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
8   <![endif]-->
9   <script type="text/javascript" src="../../script/qx.js"></script>
10 </head>
11 <body>
12   <script type="text/javascript" src="../../script/layout.js"></script>
13
14   <div id="demoDescription">
15     <p>JS Object Storage Performance</p>
16
17     <h1>Test Description</h1>
18     <p>Precreate 50.000 objects (locally stored). After this create 10.000 new (not stored) objects inside a loop.</p>
19     <p>The test method is implemented outside of the scope of "store".</p>
20
21     <h1>Result</h1>
22     <p>We need no additional cleanup to get a good performance of the function. First loop is done after ~1150ms. The following loop needs ~350ms. Quite good. The same value as in the first example, where the data have never exist.</p>
23   </div>
24
25   <script type="text/javascript">
26   function test()
27   {
28     var _s = (new Date).valueOf();
29
30     for (var i=0; i<10000; i++) {
31       new Object()
32     };
33
34     window.status = "time: " + (new Date).valueOf() + " | measured: " + ((new Date).valueOf() - _s) + "ms";
35     window.setTimeout(test, 1000);
36   }
37
38   qx.core.Init.getInstance().defineMain(function()
39   {
40     var store = [];
41
42     for (var i=0; i<50000; i++) {
43       store.push({});
44     };
45
46     test();
47   });
48   </script>
49 </body>
50 </html>