Hi, this is not so much of a
java question, but I'll be doing it using java.
I will have say 20,000,000 strings, each one around 30 characters in length.
I want to store them on the server, so java program can access them.
So for example, if the 17,000,000
string was required, I could in theory, read the 17,000,000th line from one big text file.
I don't think this will be very quick though, so I thought..
Perhaps break the 20,000,000 strings into 1000 files of length 20,000. Then read required line from the required file.
Can anyone think of an alternative to this, prefably faster and talking up less space.
Thanks