Hi, On Sat, Mar 8, 2008 at 1:40 AM, Marshall Keith J NPRI <[EMAIL PROTECTED]> wrote: > Batik Users, > > I'm updating multiple rectangle fill colors on the canvas after the press of > a button. The first time I perform the update I noticed that the changes are > considerably slow. Anytime after the first update, it is significantly > faster. Any thoughts? Thanks. >
If I am not wrong, it is the feature of java lazy loading, which only load the things it needs. The advantages of this lazy loading, it make the application seem faster and use less resources. There is also java feature JIT which runtime compile/optimize certain class/function/procedure, if those stuff is called frequently enough. So applying the above, the first time is always slower (not necessarily slow, but slower, slower != slow) then subsequent request. Cheers Tonny Kohar -- Sketsa SVG Editor imagine, design, create ... http://www.kiyut.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
