I am coding an application that creates JVMs and needs to control the memo开发者_运维问答ry usage of the processes spawned by the JVM.You can connect to JVM process using JMX to get information about
I have created dll in C# 3.5 which does some memory intensive matrix calculations where matrices get created and disposed a lot. Everything works fine if dll is called from .Net app but if it is calle
Heap fragmentation can cause a server application that is expected to run continuously for many months to suddenly start malfunctioning thinking that it\'s out of memory.
This开发者_Python百科 code... NSString * s = [[NSString alloc] initWithString:@\"Hello, World\"];
I\'m developing a VC++ NT service that is meant to operate continuously for many months. It uses VC++ runtime heap intensively. Clearly heap fragm开发者_StackOverflow社区entation can at some point cau
Why do computers have byte-addressable memory, and not 4-byte-addressable memory (or 8-byte-addressable memory for 64bit)?Yeah, I see ho开发者_运维问答w it could be useful sometimes, it just seems ine
One of the following pieces of code generates a memory leak, any idea which part? 1) private Deque<Snapshot> snapshots = new LinkedList<Snapshot>();
I need to get the memory usage of the current process in C. Can开发者_开发技巧 someone offer a code sample of how to do this on a Linux platform?
Is it possible in C++ to create a new object at a specific memory location? I have a block of shared memory in which I would like to cre开发者_运维知识库ate an object. Is this possible?You want placem
I\'m facing some sort of memory related issue I cannot figure out. I have one summary view that lists some settings and a detail view where you can edit each setting.