Are there any peculiarities or recommendations with using either YAML, Storable (or another means) to efficiently store session hashes and bring them back to life safely from rdbms (mysql)?
So far, I've avoided using Data::Dumper (and eval) and just used 'split' with stored comma-delimited hashes or generated require-able packages with everything "ready". But now that we're under mod_perl, I'd like to find a faster, safe way do this without needing to use Apache::Reload or other avoidable overhead. BW