|
Perry Windlow
Registered User
Join date: 7 Oct 2008
Posts: 17
|
10-22-2008 12:32
Any URLS to info on how Mono/LSL manages memory.
For example if I say
LIST x = ["cccccccccccccccccccccccccccccccccccccccccc"];
x = []
is the memory recovered, also things like calls to function or data in link/listen messages.
Just trying to get some ideas on hos this works and what kind of garbage collection it has
|
|
Lexi Watkin
Registered User
Join date: 31 Jan 2007
Posts: 2
|
10-22-2008 14:40
I dont know that anyone's done that sort of benchmarking/testing as of yet. One thing I do know about mono is that it allocates (and just as importantly) de-allocates memory in 8k chucks, thus allowing scripts to allocate up to 64k of memory instead of 16k.
|