http://www.perlmonks.org?node_id=1022101


in reply to Best way to store object in db

Take a look at Sereal before you make up your mind on the format.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name