Tagged Questions

23
votes
7answers
5k views

What is the memory consumption of an object in Java?

Is the memory space consumed by one object with 100 attributes the same as that of 100 objects, with one attribute each? How much memory is allocated for an object? How much additional space is used ...
9
votes
3answers
1k views

Why does Java have such a large footprint?

Java - or at least Sun's Hotspot JVM - has long had a reputation for having a very large memory footprint. What exactly is it about the JVM that gives it this reputation? I'd be interested in a ...
2
votes
1answer
595 views

How to determine JVM memory footprint with multiple processes on Linux

I’m trying to quantify the difference in memory footprint of a small java app performing the same process multithreaded vs multiprocess. All my tests are on Linux. When running multithreaded, it is ...
0
votes
2answers
363 views

Silverlight TreeView using MVVM pattern has large footprint

I have a Silverlight TreeView where each node is a TreeNodeViewModel. The properties on the TreeNodeViewModel's are, Text, IsSelected, ImageUri, and Parent. I'm loading about 700 to 1000 TreeView ...
0
votes
3answers
144 views

Which is smaller footprint in C#

A lable sized like a rectangle with no text but has a border and is invisible (for a visual rectangle on the form around controls but not to contain the controls) or a panel?
0
votes
3answers
204 views

How to tell how much main memory an app uses

I need to choose a database management system (DBMS) that uses the least amount of main memory since we are severely constrained. Since a DBMS will use more and more memory to hold the index in main ...