RE: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-07 Thread Roger Gonzalez
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Fabio Terracini Sent: Tuesday, March 06, 2007 7:06 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal

Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-07 Thread Fabio Terracini
On 3/6/07, Roger Gonzalez [EMAIL PROTECTED] wrote: The module (the SWF and the class factory it contains) are only ever loaded/instantiated once, ever, no matter how many times you call load. ModuleLoader, on the other hand, creates -instances- using the module's class factory, and adds them

Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-06 Thread Fabio Terracini
Speaking on Modules, I might suggest you an hybrid approach. If you load ModuleA, then load ModuleB and load ModuleA again (either by ModuleLoader or by SWFLoader), you'll end with two ModuleA loaded up into memory - you can confirm this by placing a Timer to output a trace (it's really hard to

RE: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-05 Thread Matt Chotin
Funny you bring this up, it came up in a separate discussion today. We don't have a typical memory usage for a Flex app, it really depends on what kind of work your application does. Do you load lots of images? Those can take up space. How many components do you have, do you load them in a

Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-05 Thread shaun
Matt Chotin wrote: Funny you bring this up, it came up in a separate discussion today. We don't have a typical memory usage for a Flex app, it really depends on what kind of work your application does. Do you load lots of images? Those can take up space. How many components do you have, do

RE: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-05 Thread Matt Chotin
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal? Matt Chotin wrote: Funny you bring this up, it came up in a separate discussion today. We don't have a typical memory usage for a Flex app, it really depends on what kind of work your

Re: [flexcoders] Flex Player 9's (Flex 2) Memory Usage - What's Normal?

2007-03-05 Thread shaun
Matt Chotin wrote: Two places to learn about weak refs and memory: http://livedocs.adobe.com/flex/201/html/16_Event_handling_172_6.html, http://livedocs.adobe.com/flex/201/html/performance_118_27.html Its funny(read: typical), just after i pressed send I noticed the week reference arg to the