This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com
284
votes
30answers
199k views
Strange out of memory issue while loading an image to a Bitmap object
I have a list view with a couple of image buttons on each row. When you click the list row, it launches a new activity. I have had to build my own tabs because of an issue with the camera layout. The ...
139
votes
10answers
58k views
In Java, what is the best way to determine the size of an object?
For example, let's say I have an application that can read in a CSV file with piles of data rows. I give the user a summary of the number of rows based on types of data, but I want to make sure that ...
294
votes
6answers
118k views
How to discover memory usage of my application in Android
I would like to know how I can find the memory used on my Android application, programmatically.
I hope there is a way to do it. Plus I would like to understand how to get the free memory of the ...
91
votes
12answers
79k views
java.lang.OutOfMemoryError: bitmap size exceeds VM budget - Android
I developed an application that uses lots of images on Android.
The app runs once, fills the information on the screen (Layouts, Listviews, Textviews, ImageViews, etc) and user reads the information.
...
92
votes
14answers
22k views
Understanding reference counting with Cocoa and Objective-C
I'm just beginning to have a look at Objective-C and Cocoa with a view to playing with the iPhone SDK. I'm reasonably comfortable with C's malloc and free concept, but Cocoa's references counting ...
68
votes
11answers
72k views
Java maximum memory on Windows XP
I've always been able to allocate 1400 megabytes for Java SE running on 32-bit Windows XP (Java 1.4, 1.5 and 1.6).
java -Xmx1400m ...
Today I tried the same option on a new Windows XP machine using ...
18
votes
3answers
5k views
Single objects still limited to 2 GB in size in CLR 4.0?
As I understand it there's a 2 GB limit on single instances in .NET. I haven't paid a lot of attention to that since I have mainly worked on 32 bit OS so far. On 32 but it is more or less an ...
7
votes
4answers
10k views
Recommendations for a heap analysis tool for Java?
List your favorite heap analysis tools (e.g. jprofiler, jmap, ...).
Let's keep it one tool per answer, with a short list of pros and cons for each tool.
26
votes
5answers
8k views
C String literals: Where do they go?
I have read a lot of posts about "string literals" on SO, most of which have been about best-practices, or where the literal is NOT located in memory.
I am interested in where the string DOES get ...
175
votes
19answers
273k views
Linux: How to measure actual memory usage of an application or process?
How do you measure the memory usage of an application or process in Linux?
From the blog article of Understanding memory usage on Linux, "ps" is not an accurate tool to use for this intent.
Why ...
41
votes
5answers
31k views
Detect application heap size in Android
How do you programmatically detect the application heap size available to an Android app?
I heard there's a function that does this in later versions of the SDK. In any case, I'm looking for solution ...
178
votes
22answers
42k views
C++ Which is faster: Stack allocation or Heap allocation
This question may sound fairly elementary, but this is a debate I had with another developer I work with.
I was taking care to stack allocate things where I could, instead of heap allocating them. He ...
30
votes
8answers
6k views
When and why will an OS initialise memory to 0xCD, 0xDD, etc. on malloc/free/new/delete?
I know that the OS will sometimes initialise memory with certain patterns such as 0xCD and 0xDD. What I want to know is when and why this happens.
When
Is this specific to the compiler used?
Do ...
40
votes
8answers
47k views
How to get object size in memory? [duplicate]
Possible Duplicate:
Find size of object instance in bytes in c#
I need to know how much bytes my object consumes in memory (in C#). for example how much my hashtable, or SortedList, or ...
34
votes
7answers
39k views
How do you get total amount of RAM the computer has?
I'm wanting to get the total amount of RAM my computer has using C#.
Using the PerformanceCounter I can get the amount of Available ram, by setting:
counter.CategoryName = "Memory";
...
56
votes
8answers
69k views
How to monitor the computer's cpu, memory, and disk usage in Java?
I would like to monitor the following system information in Java:
current cpu usage** (percent)
available memory* (free/total)
available disk space (free/total)
*note that I mean overall memory ...
45
votes
9answers
11k 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 ...
12
votes
1answer
5k views
How to get information about free memory and running processes in an App Store approved app? (Yes, there is one!)
There is an app called "Activity Monitor Touch" in the App Store, which displays background processes as well as free memory.
So there MUST be an public API to access this information. The evidence:
...
86
votes
5answers
35k views
How to determine CPU and memory consumption from inside a process?
I once had the task of determining the following performance parameters from inside a running application:
Total virtual memory available
Virtual memory currently used
Virtual memory currently used ...
54
votes
12answers
16k views
“register” keyword in C?
What does the register keyword do in C? I have read that it is used for optimizing but is not clearly defined in any standard. Is it still relevant and if so, when would you use it?
37
votes
12answers
29k views
JavaScript object size
I want to know the size occupied by a JavaScript object.
Take the following function -
function Marks()
{
this.maxMarks = 100;
}
function Student()
{
this.firstName = "firstName";
...
34
votes
12answers
96k views
How to tune Tomcat 5.5 JVM Memory settings without using the configuration program
I need to configure Tomcat memory settings as part of a larger installation, so manually configuring tomcat with the configuration app after the fact is out of the question. I thought I could just ...
47
votes
31answers
31k views
Memory management in C++ [closed]
What are some general tips to make sure I don't leak memory in C++ programs ? How do I figure out who should free memory that has been dynamically allocated ?
31
votes
10answers
37k views
How to find a Java Memory Leak
How do you find a memory leak in Java (using for example JHat)? I have tried to load the heap dump up in JHat to take a basic look. However I do not understand how I am supposed to be able to find the ...
52
votes
7answers
42k views
What is causing “Unable to allocate memory for pool” in PHP?
I've occasionally run up against a server's memory allocation limit, particularly with a bloated application like Wordpress, but never encountered "Unable to allocate memory for pool" and having ...
31
votes
8answers
25k views
How much memory does a C#/.NET object use?
I'm developing an application which currently have hundreds of objects created.
Is it possible to determine (or approximate) the memory allocated by an object (class instance)?
48
votes
7answers
14k views
Arrays, heap and stack and value types
int[] myIntegers;
myIntegers = new int[100];
In the above code, is new int[100] generating the array on the heap? From what I've read on CLR via c#, the answer is yes. But what I can't understand, ...
50
votes
8answers
16k views
Reducing memory usage of .NET applications?
What are some tips to reduce the memory usage of .NET applications? Consider the following simple C# program.
class Program
{
static void Main(string[] args)
{
Console.ReadLine();
...
16
votes
7answers
11k views
How do free and malloc work in C?
I'm trying to figure out what would happened if I try to free a pointer "from the middle"
for example, look at the following code:
char *ptr = (char*)malloc(10*sizeof(char));
for (char i=0 ; i<10 ...
4
votes
7answers
2k views
General strategy to resolve Java memory leak?
I have a standalone program that I run locally, it is meant to be a server type program running 24/7. Recently I found that it has a memory leak, right now our only solution is to restart it every 4 ...
45
votes
6answers
56k views
Virtual Memory Usage from Java under Linux, too much memory used
I have a problem with a java application running under linux.
When I launch the application, using the default maximum heap size (64mb), I see using the tops application that 240 MB of virtual Memory ...
52
votes
1answer
31k views
How is the java memory pool divided?
Iâm currently monitoring a Java application with jconsole. The memory tab lets you choose between:
Heap Memory Usage
Non-Heap Memory Usage
Memory Pool âEden Spaceâ
Memory Pool âSurvivor Spaceâ
Memory ...
60
votes
12answers
14k views
Setting Objects to Null/Nothing after use in .NET
Should you set all the objects to null (Nothing in VB.NET) once you have finished with them?
I understand that in .NET it is essential to dispose of any instances of objects that implement the ...
12
votes
10answers
12k views
Memory Management in Objective-C [duplicate]
Possible Duplicates:
Learn Obj-C Memory Management
Where are the best explanations of memory management for iPhone?
I come from a C/C++ background and the dynamic nature of ObjectiveC is ...
16
votes
4answers
30k views
Set Windows process (or user) memory limit
Is there any way to set a system wide memory limit a process can use in Windows XP? I have a couple of unstable apps which do work ok for most of the time but can hit a bug which results in eating ...
35
votes
7answers
23k views
ruby/ruby on rails memory leak detection
I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that ...
26
votes
4answers
12k views
Memory management in Qt?
I'm quite new to Qt and am wondering on some basic stuff with memory management and the life of objects. When do I need to delete / destroy my objects? Is any of this handled automatically?
In the ...
14
votes
5answers
33k views
How to read file content into istringstream?
In order to improve performance reading from a file, I'm trying to read the entire content of a big (several MB) file into memory and then use a istringstream to access the information.
My question ...
10
votes
6answers
13k views
Is there a memory limit for a single .NET process
We are currently thinking of building a cache-system to hold data pulled out of an SQL database and make it available to a couple of other applications (website, webservice, etc). We imagine the cache ...
23
votes
0answers
16k views
Memory leak tool for C++ under Windows [duplicate]
Possible Duplicate:
Is there a good Valgrind substitute for Windows?
I need a recommendation of a free tool (even for a trial) for detecting memory leaks in C++ under Windows (Visual Studio ...
0
votes
6answers
605 views
iPhone - Sound overlapping with multiple button presses
When I press a button, then press another one, the sounds overlap. How can I fix that so the first sound stops when another one is pressed?
- (void)playOnce:(NSString *)aSound {
NSString *path = ...
60
votes
11answers
72k views
How do I determine the size of my array in C?
How do I determine the size of my array in C?
That is, the number of elements the array can hold?
22
votes
5answers
11k views
iPhone - dealloc - Release vs. nil
Wondering if someone with experience could possibly explain this a bit more. I have seen examples of...
[view release];
view = nil;
....inside the (void) dealloc.
What is the difference ...
55
votes
10answers
9k views
What is memory fragmentation?
I've heard the term "memory fragmentation" used a few times in the context of C++ dynamic memory allocation. I've found some questions about how to deal with memory fragmentation, but can't find a ...
16
votes
2answers
7k views
Available memory for iPhone OS app
Is there a function or constant defining the amount of available memory for an app in iPhone OS?
I'm looking for a device-independent way (iPod touch, iPhone, iPad) to know how much memory the app ...
31
votes
11answers
11k views
Does stack grow upward or downward?
I have this piece of code in c:
int q=10;
int s=5;
int a[3];
printf("Address of a: %d\n",(int)a);
printf("Address of a[1]: %d\n",(int)&a[1]);
printf("Address of a[2]: ...
42
votes
6answers
29k views
Decoding bitmaps in Android with the right size
I decode bitmaps from the SD card using BitmapFactory.decodeFile. Sometimes the bitmaps are bigger than what the application needs or that the heap allows, so I use BitmapFactory.Options.inSampleSize ...
33
votes
8answers
20k views
How to solve Memory Fragmentation
We've occasionally been getting problems whereby our long-running server processes (running on Windows Server 2003) have thrown an exception due to a memory allocation failure. Our suspicion is these ...
21
votes
2answers
8k views
Knowing “available RAM” on an iOS device
You've likely seen the many "System Info" apps out there which display things like remaining battery life, and even system info like memory, etc.
In a similar manner, is there any way to retrieve ...
24
votes
20answers
19k views
How to dispose a class in .net?
The .net garbage collector will eventually free up memory, but what if you want that memory back immediately? What code do you need to use in a class myclass to call
myclass.dispose
and free up ...
