A while back, Linden Lab added a number of functions related to memory profiling, which include llGetSPMaxMemory(), llScriptProfiler(), and llSetMemoryLimit(). The first two may be useful for scripters wishing to debug the memory usage of their larger scripts.
The latter one, llSetMemoryLimit() is of no worth for reducing script memory usage even in SL because Mono and Phlox both use dynamic memory allocation for script memory. If llSetMemoryLimit() is implemented at all, it should just be as a non-functional implementation so that scripts from SL can compile.
A while back, Linden Lab added a number of functions related to memory profiling, which include
llGetSPMaxMemory(),llScriptProfiler(), andllSetMemoryLimit(). The first two may be useful for scripters wishing to debug the memory usage of their larger scripts.The latter one,
llSetMemoryLimit()is of no worth for reducing script memory usage even in SL because Mono and Phlox both use dynamic memory allocation for script memory. IfllSetMemoryLimit()is implemented at all, it should just be as a non-functional implementation so that scripts from SL can compile.