From: Jess Robinson Date: Sat, 14 Oct 2006 20:11:40 +0000 (+0000) Subject: Funky hashref inflating example X-Git-Tag: v0.07003~26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe5cf259d845b9a7ddb8e75ee514855e12441608;p=dbsrgits%2FDBIx-Class.git Funky hashref inflating example --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index ec8578e..f2934cb 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -1096,4 +1096,45 @@ B test.pl ### The statement below will print print "I can do admin stuff\n" if $admin->can('do_admin_stuff'); +=head2 Skip object creation for faster results + +DBIx::Class is not built for speed, it's built for convenience and +ease of use, but sometimes you just need to get the data, and skip the +fancy objects. Luckily this is also fairly easy using +C: + + # Define a class which just returns the results as a hashref: + package My::HashRefInflator; + + ## $me is the hashref of cols/data from the immediate resultsource + ## $prefetch is a deep hashref of all the data from the prefetched + ## related sources. + + sub mk_hash { + my ($me, $rest) = @_; + + return { %$me, + map { ($_ => mk_hash(@{$rest->{$_}})) } keys %$rest } + }; + } + + sub inflate_result { + my ($self, $source, $me, $prefetch) = @_; + return mk_hash($me, $prefetch); + } + + # Change the object inflation to a hashref for just this resultset: + $rs->result_class('My::HashRefInflator'); + + my $datahashref = $rs->next; + foreach my $col (keys $datahashref) { + if(!ref($datahashref->{$col}) { + # It's a plain value + } + elsif(ref($datahashref->{$col} eq 'HASH')) { + # It's a related value in a hashref + } + } + =cut +