missed a couple things
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Serialize / Storable.pm
CommitLineData
69ac22ee 1package DBIx::Class::Serialize::Storable;
ed28f830 2use strict;
bf5ecff9 3use warnings;
69ac22ee 4use Storable;
ed28f830 5
6sub STORABLE_freeze {
7 my ($self,$cloning) = @_;
ed28f830 8 my $to_serialize = { %$self };
9 delete $to_serialize->{result_source};
69ac22ee 10 return (Storable::freeze($to_serialize));
ed28f830 11}
12
13sub STORABLE_thaw {
14 my ($self,$cloning,$serialized) = @_;
69ac22ee 15 %$self = %{ Storable::thaw($serialized) };
24d67825 16 $self->result_source($self->result_source_instance)
17 if $self->can('result_source_instance');
ed28f830 18}
19
19345968 201;
21
22__END__
23
24=head1 NAME
25
24d67825 26 DBIx::Class::Serialize::Storable - hooks for Storable freeze/thaw
19345968 27
28=head1 SYNOPSIS
29
30 # in a table class definition
69ac22ee 31 __PACKAGE__->load_components(qw/Serialize::Storable/);
19345968 32
33 # meanwhile, in a nearby piece of code
24d67825 34 my $cd = $schema->resultset('CD')->find(12);
2053ab2a 35 # if the cache uses Storable, this will work automatically
36 $cache->set($cd->ID, $cd);
19345968 37
38=head1 DESCRIPTION
39
24d67825 40This component adds hooks for Storable so that row objects can be
41serialized. It assumes that your row object class (C<result_class>) is
2053ab2a 42the same as your table class, which is the normal situation.
19345968 43
44=head1 AUTHORS
45
46David Kamholz <dkamholz@cpan.org>
47
48=head1 LICENSE
49
50You may distribute this code under the same terms as Perl itself.
51
52=cut