Is it possible to parse a google app engine object like so...
objects = db.GqlQuery('SELECT * FROM Database WHERE item='random'')
memcache.add('object', objects, 3600)
if object =='some condition':
#here can I do a query on 'objects' without using GqlQuery
elif object =='something else':
#do a different query than the one above
The idea is to store an object into memcache and then manipulate that object in different ways. This is to lighten the datastore reads. Thanks in advance!