Hey all,
I'm looking to store large amounts of data, what is the recommended way of doing so efficiently?
Each entry has three pieces of data: ID, Timestamp, String
Each String has a maximum size of around 300 chars.
There are massive amounts of entries (1000/user/day estimate).
The emphasis is on storing the data efficiently (space-wise).
Searching isn't really an issue, I just need to be able to recover chunks of the data per user.
What's the best way to structure this? Database or flatfile?
Table per user, etc..?
Bookmarks