Tagged Questions

0
votes
2answers
61 views

Fopen failing for binary file

I have a huge binary file which is 2148181087 bytes (> 2gb) I am trying to do fopen (file, "r") and it failed with Can not open: xyz file (Value too large to be stored in …
3
votes
2answers
70 views

Java Library Size

If I'm given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger …
1
vote
2answers
78 views

How can I reduce memory usage of a Twisted server?

I wrote an audio broadcasting server with Python/Twisted. It works fine, but the usage of memory grows too fast! I think that's because some user's network might not be good enough …
2
votes
5answers
180 views

Heap fragmentation and windows memory manager

Hi, I'm having trouble with memory fragmentation in my program and not being able to allocate very large memory blocks after a while. I've read the related posts on this forum - m …
2
votes
3answers
66 views

How to debug a MemoryError in Python? Tools for tracking memory use?

I have a Python program that dies with a MemoryError when I feed it a large file. Are there any tools that I could use to figure out what's using the memory? This program ran fin …
1
vote
2answers
136 views

C/C++ memory usage API in Linux/Windows

I'd like to obtain memory usage information for both per process and system wide. In Windows, it's pretty easy. GetProcessMemoryInfo and GlobalMemoryStatusEx do these jobs greatly …
1
vote
1answer
52 views

HttpContext.Cache Physical Memory Usage

Is there any way to find the number of bytes of memory that are currently in the HttpContext.Cache? I've found where you can get the physical memory limit using EffectivePrivateBy …
1
vote
4answers
85 views

LRU LinkedHashMap that limits size based on available memory

I want to create a LinkedHashMap which will limit its size based on available memory (ie. when freeMemory + (maxMemory - allocatedMemory) gets below a certain threshold). This wil …
1
vote
2answers
80 views

Can I get a breakdown of memory use?

Can I get a better breakdown of memory use from within my app than GC.GetTotalMemory? For example per-assembly or per-module? Does that even make sense?
2
votes
9answers
261 views

C Question: Array declared inside a function cant exceed ~8MB of memory. What am I doing wrong?

Hi, while using Eclipse on a Mac (2GB RAM) i have encountered the following problem: whenever i try to create an array which exceeds 8384896 bytes, i get segmentation faults. The …
2
votes
11answers
821 views

Memory overhead of Java HashMap compared to ArrayList

I am wondering what is the memory overhead of java HashMap compared to ArrayList? Update: I would like to improve the speed for searching for specific values of a big pack (6 Mil …
1
vote
5answers
78 views

Good way to concatenate string representations of objects?

Ok, We have a lot of where clauses in our code. We have just as many ways to generate a string to represent the in condition. I am trying to come up with a clean way as follows: …
3
votes
1answer
73 views

Why does my script use so much more memory when run with mod_perl?

I'm trying to learn how to profile perl memory. I have a very simple Perl hello-world script and I want to know its size in memory. I use GTop utility to measure the memory (reco …
2
votes
4answers
113 views

Outlook 2007 Add-in Memory Leak?

Hi all, I've created a simple Outlook 2007 add-in using C# which loops through a selection of Messages and examines their attachments. I'm running this add-in on a set of ~25,000 …
2
votes
2answers
220 views

How to display iPhone free memory ? and how to free iPhone memory?

How to display iPhone free memory in a UILabel ? and I would like to ask, how to free up memory using iPhone SDK? FYI, I'm using iPhone SDK 3.1.2 with xcode 3.2.1 (Mac OS X Snow …

1 2 3 4 5 9 next
15 30 50 per page