If you are using a database to keep your sessions, there is one rather significant limitation which you should be aware of.
It does depend on the specifics of your DB, but I am going to guess that in most cases it is something that could happen to any database…
For example, we were using MySQL to keep the session data.
Looking at the table you’ll see that session data is serialized and stored in the “data” field…
By default that field is set to MySQL’s “TEXT” type, which has a size limitation of ~ 65K.
I know, I know… why would you want sessions larger than 65K?
Well…
“640k ought to be enough for anybody”
So, just in case, you do need a larger session the remedy is pretty simple, change the field type to “MEDIUMTEXT”, which effectively gives you ~ 16MB.
p.s. If you need even a larger size you can go with “LONGTEXT”.
For your reference, here’s the semi-official breakdown of different text-type fields in MySQL and their limitations:
TEXT
A BLOB or TEXT column with a maximum length of 65535 (2^16 – 1) characters
MEDIUMTEXT
A BLOB or TEXT column with a maximum length of 16777215 (2^24 – 1) characters
LONGTEXT
A BLOB or TEXT column with a maximum length of 4294967295 (2^32 – 1) characters