Thread: Low fps still
View Single Post
05-21-09, 04:12 AM   #14
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Do you understand how dynamic memory and garbage collection work? There is no limit to how high memory can get in an application if it is using dynamic memory and the garbage collector is not running.

As for what "features" could cause that much memory usage... all of them... nUI is replacing every element of the user interface and tracking almost every action that occurs in the game for you and all of your party and raid members. Until I rewrote the event engine last week, it was using about 200k of dynamic memory a second to do that. That is now down to well under 1k per second, but it's still there. You can get to 30 meg in a big hurry if the garbage collector stops running.

Have you done the clean install yet?

EDIT: I should add, too, that how much memory a mod is using is irrelevant to performance except with regard to garbage collection. It's how the memory is used that counts. I'm not sure what you base your "I personally don't think it should be that high" statement on, but if you look at the features nUI provides and you build a collection of other mods that do that same thing, I'll guarantee you nUI uses less. But that doesn't matter. What matters is CPU load and code efficiency. You're hung up on a mostly meaningless number.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/

Last edited by spiel2001 : 05-21-09 at 04:17 AM.