3
votes
2answers
221 views
What are the code and data footprints of the leading javascript engines? (V8, Squirrelfish, TraceMonkey..)
Since the speed of the top Javascript engines seems to be on par, the next criteria is footprint. What are the code and data footprints of the leading javascript engines?
0
votes
1answer
149 views
How to determine JVM memory footprint with multiple processes on Linux
Hi,
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 runn …
2
votes
4answers
80 views
What is meaning of small footprint in terms of programming ?
I heard many libraries such as JXTA and PjSIP have smaller footprints. Is this pointing to small resource consumption or something else?
0
votes
3answers
93 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?
7
votes
3answers
328 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 …
2
votes
1answer
270 views
python versus java runtime footprint
Can anyone point to serious comparison of Python runtime footprint versus Java?
Thanks,
Avraham
9
votes
7answers
1k 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 addit …
14
votes
8answers
1k views
How much footprint does C++ exception handling add
This issue is important especially for embedded development. Exception handling adds some footprint to generated binary output. On the other hand, without exceptions the errors nee …
0
votes
6answers
718 views
Good tool to minimize HTML footprint?
Does anyone know a good tool that can be run on a page (for asp.net, for example) to help to minimize the footprint size of the page?
The page will have typical items: HTML, Javas …
0
votes
3answers
152 views
How to tell how much main memory an app uses
Hi all,
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 memo …
7
votes
3answers
328 views
Is object code generated for unused template class methods?
I have a C++ template class that gets instantiated with 3 different type parameters. There's a method that the class needs to have for only one of those types and that isn't ever c …
