Storing a list of objects in GAE
- by Dominic Bou-Samra
I need to store some data that looks a little like this:
xyz 123
abc 456
hij 678
rer 838
Now I would just store it as a traditional string and integer model, and put in the datastore. But the data changes regularly, and is ONLY relevant when looked at as a COLLECTION. So it needs to be store as either a list of lists, or a list of objects, both of which can't really be done without pickling as far as I know. Can anyone help? Even storing it as a text file may work :S