[android-developers] Re: RAM memory + Java Aplication

2011-06-22 Thread JAlexoid (Aleksandr Panzin)
You could try mmap'ing your files, but you're better off just using the File IO more efficiently an load only the chunks of the file that you need. Remember that that is no swap in Android, so when you hit the mem limit it's not going to magically increase, as it would on your desktop. On Jun 22,

[android-developers] Re: RAM memory + Java Aplication

2011-06-22 Thread Chris
On my rooted G1 running a bastardized build of 2.3.3 I can push this up to 48m. But you're probably better off, if suitable, putting this data into a preconfigured database and querying for what's interesting. For some definition of 'suitable.' -- You received this message because you are