Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
421 views

How is memory-efficient non-destructive manipulation of collections achieved in functional programming?

I'm trying to figure out how non-destructive manipulation of large collections is implemented in functional programming, ie. how it is possible to alter or remove single elements without having to ...
10
votes
2answers
3k views

In-memory size of python stucture

Does someone know of a good reference card for the memory size of python data stucture on 32 and 64 bit platforms ? If not, this would be nice to have it on SO. The more exhaustive the better ! So ...
8
votes
2answers
718 views

GCC vs Greenhills on ARM

I'm interested in any comparisons between GCC and Greenhills C compiler with regard to memory footprint of generated code specifically on ARM platforms. Are there any benchmarks or comparisons for ...
6
votes
4answers
1k views

Reduce Mongrel Rails Memory Footprint & Increase performance?

My rails sites run Mongrel, I am having a problem with the amount of memory being used. My ruby-bin processes are using up about 66 MB of resident memory. How can I reduce the amount of memory used ...
4
votes
4answers
539 views

How to determine the size of PermGen within a Java application?

Is there any way to measure the currently used size of permanent generation (PermGen) within my Java application? I cannot use external profiling tools such as VisualVM. Even better would be an ...
3
votes
9answers
305 views

Java performance: true vs. Boolean.TRUE

Which is better in terms of performance and efficient memory usage? Boolean isItTrue(arg){ return Boolean.TRUE; } boolean isItTrue(arg){ return Boolean.TRUE } Boolean isItTrue(arg){ ...
3
votes
2answers
238 views

Memory footprint of my delphi application

I have a large delphi application and I am trying to keep the memory footprint low. In my program I am using a component (Taco) and a component (TBurrito) that inherits from taco. Now just concerning ...
3
votes
4answers
422 views

Making C#/.NET have a small footprint?

I notice an usual high memory size. One app i wrote is a console app that uses <50lines and simply downloads a series of files solely using WebRequest. Another app that isnt trivial (mysql, dls, ...
3
votes
3answers
2k views

Recording Memory Footprint In Linux

Is there a way we can record memory footprint? In a way that after the process has finish we still can have access to it. The typical way I check memory footprint is this: $ cat /proc/PID/status ...
2
votes
2answers
109 views

Which database should be used when developing a client-server application as a retail product?

We are in the process of developing a client-server software (in C#, Net 2.0)which can be sold off the shelf. The product is in Medical domain. Can anyone suggest the best possible database for the ...
2
votes
1answer
953 views

python versus java runtime footprint

Can anyone point to serious comparison of Python runtime footprint versus Java? Thanks, Avraham
0
votes
2answers
45 views

Memory footprint on windows

My C application on windows is running a for loop in which it dumps numerous entries into some data structure and then saves the same in an xml. Now, i want to know the memory footprint it is taking ...
0
votes
2answers
79 views

Program memory footprint for different interpreters/compilers

Here's an excerpt from the Wikipedia entry on K programming language: The small size of the interpreter and compact syntax of the language makes it possible for K applications to fit entirely ...
0
votes
1answer
231 views

InnoDB row size large as compared to MyIsam

I have a table with for columns, a smallint, an integer and two floats. Expected memory for each row is 14bytes (2+4+2*4). I have around 700,000 rows in my table. I've set no primary keys and ...
0
votes
2answers
127 views

Library code memory footprint analysis

Let's say we have a some library compiled into .a file. After that this library is linked with other code into some executable file .exe. Size of .a file is 6Mb while this size of .exe file is 3Mb. ...
0
votes
4answers
148 views

Points to be considered while designing or coding for lesser footprint deliverables

Please post the points one should keep in mind while designing or coding for lesser footprint deliverables for embedded systems. I am not giving compiler or platform details, as I want generic ...
0
votes
2answers
383 views

What is the memory footprint for .NET Framework Compact Edition?

What is the memory footprint for .NET Framework Compact Edition? Thanks.