webapp2_extras' sessions are pretty useful, and I've been using them to keep users logged in and such. But there's not much documentation about it. For instance: which is the memory limit for an entry in the session dictionary?
So far I've stored strings and numbers. But I need to store a whole image, uploaded from a HTML form (the idea is that this image is temporary and it may be discarded, so I don't want to store it in the datastore until I'm sure I have to do it). It doesn't seem to work, and I guess I'm hitting a memory problem:
self.session['photo_image'] = self.request.get("photo_image")
Is that so? I guess there are memory limits, but I can't find them. How else could I store a temporary image in GAE?