Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in my program i have a method which requires about 4 files to be open each time it is called,as i require to take some data.all this data from the file i have been storing in list for manupalation. I approximatily need to call this method about 10,000 times.which is making my program very slow?

any method for handling this files in a better ways and is storing the whole data in list time consuming what is better alternatives for list?

I can give some code,but my previous question was closed as that only confused everyone as it is a part of big program and need to be explained completely to understand,so i am not giving any code,please suggest ways thinking this as a general question...

thanks in advance

share|improve this question
1  
Is the method using the whole file(s) each time it is called? Could it for instance use a database instead? If so then I would look at dumping the file contents into a SQLite database and using SQL to query it for the data required on each call. – Lasse V. Karlsen Jun 9 '10 at 14:31
How large are your files? – tanascius Jun 9 '10 at 14:32
yes it is using the whole files each time it is called.. my file are each of about 500kb – kaushik Jun 9 '10 at 15:29

5 Answers

up vote 1 down vote accepted

It might be better to load your data into a database and put some indexes on the database. Then it will be very fast to make simple queries against your data. You don't need a lot of work to set up a database. You can create an SQLite database without requiring a separate process and it doesn't have a complicated installation process.

share|improve this answer

As a general strategy, it's best to keep this data in an in-memory cache if it's static, and relatively small. Then, the 10k calls will read an in-memory cache rather than a file. Much faster.

If you are modifying the data, the alternative might be a database like SQLite, or embedded MS SQL Server (and there are others, too!).

It's not clear what kind of data this is. Is it simple config/properties data? Sometimes you can find libraries to handle the loading/manipulation/storage of this data, and it usually has it's own internal in-memory cache, all you need to do is call one or two functions.

Without more information about the files (how big are they?) and the data (how is it formatted and structured?), it's hard to say more.

share|improve this answer
I have about 3200 files each of around 400kb..for each call 4 of these files are to be used..I will just use the file data will not manupalate data in file.i just need to read them.it is just properties data each line having 5 words.. – kaushik Jun 9 '10 at 15:33
i find your idea interesting, how to store then in cache? – kaushik Jun 9 '10 at 15:34
Well, I am guessing your data looks something like this: property 1 = word1 word2 word3 word4 word5. You could create a hash-table where property1 is the key to the value word1 word2 word3 word4 word5. Setup the hash table when the app starts up, then every other time you need the data, access the hash-table instead of the files. – FrustratedWithFormsDesigner Jun 9 '10 at 15:42
...Of course, if the structure has more meaning than just property key=value, you might want a more complex data structure. For example, instead of just storing the words as a single string, you might want to store them as an array of words. It will depend on your specific needs, but I hope that gives the general idea. – FrustratedWithFormsDesigner Jun 9 '10 at 15:43
do i need to drop data from all my 3200 files into hash table..for this to i guess need to open 3200 files. – kaushik Jun 9 '10 at 15:44
show 1 more comment

Opening, closing, and reading a file 10,000 times is always going to be slow. Can you open the file once, do 10,000 operations on the list, then close the file once?

share|improve this answer
no way,i each time i open a different file.. – kaushik Jun 9 '10 at 15:35

Call the open to the file from the calling method of the one you want to run. Pass the data as parameters to the method

share|improve this answer

If the files are structured, kinda configuration files, it might be good to use ConfigParser library, else if you have other structural format then I think it would be better to store all this data in JSON or XML and perform any necessary operations on your data

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.