[flexcoders] Memory leaks

2015-09-24 Thread Isabelle Loyer Perso isa_lo...@yahoo.fr [flexcoders]
Hi I created an air application with a schedule. To populate this schedule with appointment, I launch an httpservice and result is use to populate an array collection. Each time user change week, a new request is sending. The variable myDataCalendar (array collection) is defined as [Bindable]

[flexcoders] memory leaks and activation-objects

2010-08-30 Thread lew.miller
I've been wrestling with memory leaks and the FB4 profiler and lately have been trying to understand activation-objects and their relationship to GC because the vast majority (often all) of the references the profiler tells me an object has keeping it in memory come from activation objects.

Re: [flexcoders] memory leaks and activation-objects

2010-08-30 Thread Alex Harui
AFAIK, they do not cause leaks. If you show some data or a simple test case that indicates that they are, I will try to take a look. On 8/30/10 8:36 AM, lew.miller lew.mil...@gmail.com wrote: I've been wrestling with memory leaks and the FB4 profiler and lately have been trying to

[flexcoders] Memory leaks?

2009-01-16 Thread tchredeemed
When I load different modules, I notice a large decrease in performance. The thing is, there are only 2 modules that get loaded, and the user can go back and forth. startup = module 1 click link to get to module 2 click 'back' button to get back to module 1 click link to get ot module 2 click

RE: [flexcoders] Memory leaks?

2009-01-16 Thread Alex Harui
Cache them if you want, but that might mean a higher total memory usage. It is always a trade-off. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of tchredeemed Sent: Friday, January 16, 2009 12:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory

[flexcoders] Memory leaks in Flex SDK

2008-11-25 Thread Jules Suggate
Hi all, I know this is a multennial subject, but I just checked Adobe's JIRA and found three confirmed memory leaks in the Flex SDK :( They are: + Memory leak in SWFLoader: https://bugs.adobe.com/jira/browse/SDK-18076 + BindingUtils don't use weak event listeners, creating potential memory

RE: [flexcoders] Memory leaks in Flex SDK

2008-11-25 Thread Alex Harui
a release player and see what happens. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jules Suggate Sent: Tuesday, November 25, 2008 1:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory leaks in Flex SDK Hi all, I know this is a multennial subject

Re: [flexcoders] Memory leaks in Flex SDK

2008-11-25 Thread Guy Morton
player and see what happens. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jules Suggate Sent: Tuesday, November 25, 2008 1:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory leaks in Flex SDK Hi all, I know this is a multennial subject

[flexcoders] Memory Leaks... Cumulative Memory and Memory.

2008-11-19 Thread sailorsea21
Hi everyone, I think I'm having some issues with memory leaks. The memory of my Cumulative Memory and of my Memory keep increasing. When I unload modules, the memory doesn't drop and if I reload the modules, the memory keeps climbing... When I use the import command (ie:import

Re: [flexcoders] Memory Leaks... Cumulative Memory and Memory.

2008-11-19 Thread Guy Morton
I'm interested in knowing more about this too...I have an app that seems to cause the browser's memory to increase steadily over the course of several hours. However, if I run WSMonitor alongside it, it says the memory usage of my app *doesn't* increase overall (though it fluctuates

Re: [flexcoders] Memory Leaks... Cumulative Memory and Memory.

2008-11-19 Thread Ralf Bokelberg
That is the normal behaviour of the GC. It only runs, if it is necessary. You could try loading/unloading your module 1000 times to see if you really have a leak. r. On Wed, Nov 19, 2008 at 9:29 PM, sailorsea21 [EMAIL PROTECTED] wrote: Hi everyone, I think I'm having some issues with memory

RE: [flexcoders] Memory Leaks... Cumulative Memory and Memory.

2008-11-19 Thread Alex Harui
[mailto:[EMAIL PROTECTED] On Behalf Of Guy Morton Sent: Wednesday, November 19, 2008 12:44 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Memory Leaks... Cumulative Memory and Memory. I'm interested in knowing more about this too...I have an app that seems to cause the browser's

[flexcoders] Memory leaks in a asyncronic operation

2008-06-02 Thread cavi21
Hello, i've been searching for a while to a solution to this problem, and i've been trying myself, with no succeed. The problem is this, i'm encoding to JPEG six bitmap captures from a webcam stream in a video component. Up to here, is no problem. But if I used the native class to encode

RE: [flexcoders] Memory leaks in a asyncronic operation

2008-06-02 Thread Alex Harui
The Flex3 Profiler can help you find memory leaks From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cavi21 Sent: Monday, June 02, 2008 2:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory leaks in a asyncronic operation

Re: [flexcoders] Memory leaks

2007-08-27 Thread André Rodrigues Pena
:* [flexcoders] Memory leaks Hi all, It might be a well-known that Flex has several memory issues. It doesn't completely free the memory of the components you add runtime, when you remove them from their containers, and when it comes to large-scale applications, this is a huge concern. The way

Re: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-26 Thread Scott - FastLane
: [flexcoders] Memory leaks - binding to e4x XML? Alex - That is my posting, and I would hate for it to be misinformation in any way. If your research turns up no evidence that I am correct then I will endeavor to re-create my problem in a sample application that I can send along to you

[flexcoders] Memory leaks

2007-08-25 Thread André Rodrigues Pena
Hi all, It might be a well-known that Flex has several memory issues. It doesn't completely free the memory of the components you add runtime, when you remove them from their containers, and when it comes to large-scale applications, this is a huge concern. The way my co-workers found to pass by

RE: [flexcoders] Memory leaks

2007-08-25 Thread Alex Harui
Pena Sent: Saturday, August 25, 2007 10:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory leaks Hi all, It might be a well-known that Flex has several memory issues. It doesn't completely free the memory of the components you add runtime, when you remove them from

RE: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-25 Thread Tracy Spratt
this. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Saturday, August 25, 2007 2:21 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Memory leaks There are two major memory usage scenarios in Flex

RE: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-25 Thread Alex Harui
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Saturday, August 25, 2007 11:47 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Memory leaks - binding to e4x XML? I came across this article, wherein the author alleges that binding to e4x XML objects cause

Re: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-25 Thread Scott - FastLane
@yahoogroups.com *Subject:* RE: [flexcoders] Memory leaks There are two major memory usage scenarios in Flex. One involves creating a new instance of a component, displaying, and later destroying it. The other involves bringing in one or more classes of components in a module and trying to get rid

RE: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-25 Thread Alex Harui
PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Memory leaks - binding to e4x XML? Alex - That is my posting, and I would hate for it to be misinformation in any way. If your research turns up no evidence that I am correct then I will endeavor to re-create my problem in a sample