http://qs321.pair.com?node_id=913939

Herkum has asked for the wisdom of the Perl Monks concerning the following question:

Does DBIx::Class handle caching of objects? Example: I do this,

my $album1 = $schema->resultset('Album')->find(14); my $album2 = $schema->resultset('Album')->find(14);

Are these two objects going to be the same object or are they two separate objects. Basically I don't want to worry about race conditions between them.