FMIS memory
Trying to figure out how garbage collection works on FMIS 3.5 so I have used simplest server side script that looks like this:
application.onConnect = function(client)
{
application.acceptConnection(client);
}
application.onDisconnect = function(client)
{
client = null;
}
Using test flash client I connected and disconnected 5000 clients, during that time FMSCore.exe went from 15MB to 24MB and after it never goes down, even when I force GC from admin console. Got any idea?
