Difference between revisions of "User:Becky Pippen/Script Memory Limits"
Jump to navigation
Jump to search
Becky Pippen (talk | contribs) m (minor formatting) |
Kizmut Smit (talk | contribs) m (+cat :3) |
||
Line 22: | Line 22: | ||
# '''Strings/Text''' - If your script contain a large number of strings for error messages or help text, perhaps in multiple languages, see [[User:Becky_Pippen/Text_Storage| these suggestions for storing text data]]. | # '''Strings/Text''' - If your script contain a large number of strings for error messages or help text, perhaps in multiple languages, see [[User:Becky_Pippen/Text_Storage| these suggestions for storing text data]]. | ||
# '''Numeric data''' - If your script needs to store long lists of numeric data, see [[User:Becky_Pippen/Numeric_Storage|these suggestions for storing numeric data]]. | # '''Numeric data''' - If your script needs to store long lists of numeric data, see [[User:Becky_Pippen/Numeric_Storage|these suggestions for storing numeric data]]. | ||
{{Resource Conservation Portal Nav|cat=memory}} |
Latest revision as of 14:38, 31 March 2014
Script Memory Limits
Oh No! LSL script memory limits are coming! What to do?
Don't panic. See this FAQ, then see the strategy and checklist below and do what you need to do.
Strategy
To reduce script memory usage, start with the big items first before tweaking individual lines of code. Sorry, I'm not impressed if you save a dozen bytes through some clever rearrangement of a formula here or a statement there. First see if you can eliminate entire scripts or whack off thousands of bytes all at once by using a different approach or algorithm, or by removing that one memory-hungry feature, or by using a different data storage format. Then review the checklist below for more ideas.
Checklist
- Measure - For help measuring the memory your script uses, see this page.
- Requirements and goals - Do you know how efficiently your data currently uses memory? Do you know how much improvement is possible? For suggestions, see this page about measuring information content and memory efficiency.
- Scripts in child prims - If your object uses multiple scripts to detect changes in child prims, or for resizing or retexturing all the prims in a linkset (like some hair or shoes), see the new LSL functions to reduce this to a single script.
- Hashing - Does your script need to remember lots of avatar names, keys, or other identifying information? If so, consider storing hashes of the data instead.
- Strings/Text - If your script contain a large number of strings for error messages or help text, perhaps in multiple languages, see these suggestions for storing text data.
- Numeric data - If your script needs to store long lists of numeric data, see these suggestions for storing numeric data.