-
I have to correct myself. It solved ALL the memory Issues I encountered.
Thanks a lot. It made my day a lot less complicated.
2009-04-03 09:34:44 UTC in Alchemi [.NET Grid Computing Framework]
-
thanks very much for that hint. It seems to solve most of the memory Issues.
I had to do some tweaks to the code snippet though.
I put the following code at the same position as mentioned above:
List<ThreadIdentifier> keys = new List<ThreadIdentifier>(_ActiveWorkers.Keys.Count);
foreach(ThreadIdentifier ti in _ActiveWorkers.Keys)
keys.Add(ti);
foreach...
2009-03-31 14:34:23 UTC in Alchemi [.NET Grid Computing Framework]
-
Any News on this matter?
I am stuck with the same problem, except for the cpu use which probably resulted by the wrong waiting code.
I tried the partial solution from Marsantej but it didn´t really work. It seems that the memory won´t be released when you disconnect the executor from the Manager by the Code above. But when you disconnect it via the Button directly at the executor it works...
2009-03-30 12:52:02 UTC in Alchemi [.NET Grid Computing Framework]