Tagged Questions
The footprint tag has no wiki summary.
24
votes
8answers
5k 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 need to be handled some ...
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 ...
7
votes
3answers
508 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 called with the two ...
6
votes
2answers
2k views
Why is the size of .NET Framework 4.0 installer smaller than 3.0/3.5?
As I can see, beta2 of .Net Framework 4.0 installation program is only 55MB, and it was 200+MB for .Net 3.5, What's happening?
5
votes
2answers
644 views
How does Scala's Lift manage state?
I'm quite impressed by what Lift 2.0 brings to the table with Actors and StatefulSnippets, etc, but I'm a little worried about the memory overhead of these things. My question is twofold:
How does ...
5
votes
1answer
433 views
Qt::How small can it be made?
I'm using Qt for an embedded Linux app and want to make it as small as possible. At the moment If I make a statically compiled executable it will be 3.9Mb, pretty much only using the GUI parts I need. ...
5
votes
4answers
1k 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?
4
votes
2answers
300 views
What's the (memory) footprint of a J2EE servlet?
For Jetty, Tomcat, or any other servlet container of your choice, what's the average footprint (memory, and any other notable resources) of a basic servlet? This includes any other basic objects that ...
3
votes
2answers
706 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?
2
votes
2answers
132 views
How can you “footprint” a specific computer behind a firewall using HttpContext?
I have a need to be able to identify one system from another in ASP.Net using anything available in HttpContext. I've attempted to use many of the ServerVariables available, but often the systems are ...
2
votes
1answer
594 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 ...
2
votes
1answer
948 views
python versus java runtime footprint
Can anyone point to serious comparison of Python runtime footprint versus Java?
Thanks,
Avraham
1
vote
3answers
79 views
The footprint of complex jquery and javascript in a web application?
I am designing a website utilizing CI and jquery.
I have today been working on a registration script.
I was playing with jquery, and realized it could do a lot of cool stuff.
For example, I want ...
1
vote
1answer
77 views
Certificate structure
Most of signed certificate footprints are 20 byte long (field "footprint" in Windows certificate manager).
How can this be a value signed by an issuance (certification) authority? Concretly, the ...
1
vote
5answers
205 views
Footprints SQL Server
What does it mean by footprints in SQL Server?
here's a snippet from MSDN "reduce the lock footprint of expensive queries" LINK
1
vote
7answers
3k 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, Javascript, etc.
I've ...
0
votes
2answers
362 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
1answer
107 views
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 ...