View Single Post
06-07-05, 11:01 AM   #6
Gello
A Molten Giant
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 521
Hidden frames will take up as much memory as visible frames.

The primary reason for memory bloat is frequent creation of new strings/tables in OnUpdate handlers.

There's an excellent text in the wiki someplace about how memory is allocated. I wouldn't sweat creating too many static xml/lua elements. I'd be more careful with dynamically created structures like tables and frequently constructed strings.
  Reply With Quote