Flask client-side sessions
问题 Starting to learn Python's Flask web app framework, still on the learning curve, so please bear with me. I am wondering how appropriate are the client-side sessions for secure web application purposes. From what it seems, there are some serious concerns: Since all the session variables are serialized and encoded in a cookie one should be careful with how much data they store there, in order to keep the size of http data travelling back and forth in reasonable size. I'm not sure if identical