0
votes
3answers
216 views

c# save a picture file to ram

I am developing a program for image processing, and I need to save some pictures from a video and do some processing on them. When dealing with 1 picture it doesn't really take time, But when I'm ...
3
votes
1answer
147 views

C - Running a program in RAM

I have a program that XORs two files together using one time pad encryption. As the keyfile is of such sensitive nature I don't want any traces of the keyfile to appear on the computers hard drive as ...
0
votes
2answers
256 views

Android. How to keep cache in RAM?

I need to search through text files (around 40MB) in my app with regular expressions, as you can imagine, it normally takes 1 minute or so to get it done. AND I have to do it repeatedly. I wonder if ...
0
votes
1answer
386 views

read and write arraylist of Strings and enum variables to and from random access file

I would like to use a random access file to store information for my program. Is there a way that I can read and write arraylist of strings and enum variables to and from the file. ( I am aware that I ...
1
vote
2answers
1k views

Using NSData efficiently

I have a bit off code that manipulates Audio files by first putting all the audio file data in NSData variables. But it crashes sometimes because it uses to much RAM NSData *data1 = [NSData ...
1
vote
1answer
131 views

How do I read X file into RAM as a number in C++ in a linux environment?

I'm working on a compression program which needs to read a file into RAM as a single number and perform basic math operations and bit shifting. I've looked at gmp from GNU, but that has such poor ...
2
votes
3answers
758 views

How to read a large file in UNIX/LINUX with limited RAM?

I have a large text file to be opened (eg- 5GB size). But with a limited RAM (take 1 GB), How can I open and read the file with out any memory error? I am running on a linux terminal with with the ...
1
vote
2answers
250 views

In PHP, how to add a line to a file without loading it?

I have a few very large text files that weigh over 1GB and I constantly need to add a line to the top / beginning of the file with PHP. I know how to do this but what is the most efficient way in ...
1
vote
8answers
2k views

Read data directly from file to RAM in C++

Is there a way to directly read a binary file into RAM? What I mean is, is there a way to tell the compiler, here's the file, here's the block of RAM, please put the file contents in the RAM, off you ...