I'd like to store some data in a cookie and my initial though was to pack it myself, but then I remembered that There Is A Module for Everything.
I have looked at both Storable
and FreezeThaw
. Both seem appropriate, though the latter mentions string specifically and seems to serialize into a string without newlines, whereas Storable creates a string that contains newlines.
Which module is best for my application, or is there something even more appropriate?