I'm new to Python / GAE / Django. I get that with GAE there are no in-memory sessions per se... but I think I want something equivalent. I read that Django sessions can be backed by BigTable or MemCache, but I never got them working. I guess what I'm asking is "Should I..."
- Persist with getting Django sessions working?
- Look at some other webapp framework for sessions in particular, or the site in general?
- Roll my own?
It seems to me that sessions are not supported out-of-the-box and are somehow not first class citizens. What do you do?!
Thanks.