Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
1k views

iOS: Memory-mapped files and low-memory scenarios

My apologies if this has been covered elsewhere on Stackoverflow or is not here because it's too trivial a question. :-) How does the iOS platform handle memory-mapped files during low-memory ...
9
votes
6answers
399 views

What's an efficient implementation of Conway's Game of Life for low memory uses?

I'm looking for a fast and memory efficient approach for implementing Conway's Game of Life. Constraints: a 96x128 board, approximately 2kB RAM available and 52MHz processor (see the tech specs here: ...
3
votes
2answers
400 views

Android: How to force restart service (OS killing on low memory behavior)

I have a background service running that sometimes gets killed by the OS when running low on memory. There are some weird behaviors when this happens but I do not know (1) how to simulate this ...
3
votes
9answers
319 views

Run my application in a simulated low memory, slow CPU environment

I want to stress-test my application this way, because it seems to be failing in some very old client machines. At first I read a bit about QEmu and thought about hardware emulation, but it seems a ...
3
votes
3answers
1k views

How do you detect low memory situations within the java virtual machine?

I've been getting some OutOfMemory errors lately in my application. Is it possible to detect ahead of time when the virtual machine is running low on memory? In other words to preemptively deal with ...
2
votes
1answer
100 views

How to cause onLowMemory on device for tests

I want to test our app for low memory cases. Do you have any ideas, how to cause onLowMemory on devices? Thank you.
2
votes
1answer
591 views

UITableView's cellForRowAtIndexPath is not getting called after low memory warning

I am new to COCOA and Objective C. I am working on an application which have two controllers with one table view in each, clicking an item form this table will lead to another controller to be pushed ...
1
vote
4answers
259 views

c++ on low memory systems. Standard libs are using all the memory!

I need to shave off as much memory as possible. I am using standard C++ with STL. The program does not do much (yet) and it still takes 960Kb [according to top]! The executabe size is only 64KB. The ...
1
vote
1answer
2k views

MKMapView: Received memory warning. Level=2

I've got an app that caches a pretty decent amount of data in memory after parsing a csv file, and also displays an MKMapView. After scrolling across the country from one end to the other in the ...
1
vote
2answers
78 views

Why do I not get low memory issues until images are draw on the screen?

I am able to load over 200 UIImage objects into a NSMutableDictionary without any memorry warning issues. When I start displaying them on the screen (after about showing 10-20 images) I get low ...
1
vote
6answers
445 views

How to achieve low memory consumption?

I want to know which technique antivirus programs use for scanning disk or files and maintaining low memory consumption. They don't affect the user activity either. I am looking for an approach by ...
0
votes
0answers
165 views

how to fix web app low memory crashes on mobile safari

Our web app is generating LowMemory crashes very often on Ipad and Iphone. This is an example from CrashReporter Incident Identifier: 858042 CrashReporter Key: 6bda3a Hardware Model: iPad1,1 ...
0
votes
1answer
95 views

How block all applications in low memory scenario

I wrote code such that if phone internal memory becomes less than 10% of total internal memory then it'll show low memory dialog and it'll take user to managapplications activity to free some memory. ...
0
votes
2answers
94 views

Core data model update crashing because of low memory on iPhone

My iPhone app update has a new version of my core data store model. I am using a custom NSEntityMigrationPolicy. However with large core data stores on older iDevices (i.e. with less memory), it is ...
0
votes
0answers
97 views

\KernelObjects\LowMemoryCondition & \KernelObjects\MaximumCommitCondition

I have an application running as a service on a Windows Server 2008 R2 machine, 64bit version with 32GB of ram. The application itself doesn't seem to use over 3.4GB of ram (suspicious limit?) In ...
0
votes
1answer
763 views

Application.onLowMemory() not invloked

I've create an Application class of my own. I try to debug it and the code stops at Application.onCreate() but does not stop at onLowMemory. To test the scenario I open a lot of other high memory ...
0
votes
2answers
145 views

Testing iPad applications

Bit of a hardware question here. I am developing iPad applications for a client and am finding that when I send over beta versions for the client to test, he is finding many more crashes on his ...
0
votes
1answer
156 views

Low memory warning for NSObject

I have a subclass of NSObject, it is a singleton which loads a list of images into memory, either from hard drive or downloads them from the internet. I want to release the images stored in memory if ...
0
votes
2answers
300 views

release does not free up memory in low-memory condidtion

I am trying to follow the Apple's recommendation to handle low-memory warnings (found in Session 416 of WWDC 2009 videos) by freeing up resources used by freeing up my dataController object ...
0
votes
2answers
297 views

Html renderer with limited resources (good memory management)

I'm creating a linux program in C++ for a portable device in order to render html files. The problem is that the device is limited in RAM, thus making it impossible to open big files (with actual ...
0
votes
1answer
259 views

apache low memory error

mod_python(?) is eating a lot of ram (about 9mb per worker process). If i open several TRAC pages at once many of them will have an error due to no ram (64mb virtual limit). if i limit the worker ...