The app I'm currently working on would have to store for every user a
few (3-4) integers for every minute of the day.
Should I store each minute for a user as an entity in the datastore,
or would this be too much overhead?
Perhaps another solution would be to store a list for every hour, the
list having 60 elements (or maybe a pickled dictionary?), one for each
minute. When querying for a certain minute, I can just query the hour
and get the required element from the list.
What approach would you recommend?.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to