> How much stuff are you storing in user sessions?
We're storing basic authentication info and then a little object that
holds some data to pre-populate a form. I wouldn't think that's too
much data to be storing in a session....
The last time I encountered this error I ran `SELECT LENGTH(data) FROM
sessions;` and it returned "305", which from what I understand is the
number of bytes -- well below the max length of TEXT columns.
I'm going to try using a BLOB, and we'll see if the error occurs
again. However, I have a feeling the problem isn't too much data in
the session, so feel free to post any other suggestions :)