Storing a list of objects in GAE
Posted
by Dominic Bou-Samra
on Stack Overflow
See other posts from Stack Overflow
or by Dominic Bou-Samra
Published on 2010-04-16T11:09:11Z
Indexed on
2010/04/16
11:13 UTC
Read the original article
Hit count: 322
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
© Stack Overflow or respective owner