Skip to content

kentnl/DBIx-Class-InflateColumn-Serializer-Sereal

Repository files navigation

NAME

DBIx::Class::InflateColumn::Serializer::Sereal - Sereal based Serialization for DBIx Class Columns

VERSION

version 0.001003

SYNOPSIS

Standard DBIx::Class definition:

package Some::Result::Item;
use parent 'DBIx::Class::Core';

# Add Inflate::Column::Serializer to component loading.
__PACKAGE__->load_components( 'InflateColumn::Serializer', 'Core' );
__PACKAGE__->table('item');
__PACKAGE__->add_column( itemid => { data_type => 'integer' }, );
__PACKAGE__->set_primary_key('itemid');
__PACKAGE__->add_column(
  data => {
    data_type        => 'text',
    size             => 1024,
    serializer_class => 'Sereal', # This line tells InflateColumn::Serializer what class to use.
  }
);
__PACKAGE__->source_name('Item');

METHODS

get_freezer

This is an implementation detail for the InflateColumn::Serializer module.

my $freezer = ::Sereal->get_freezer( $column, $info, $column_args );
my $string = $freezer->( $object );
# $data isa string

get_unfreezer

This is an implementation detail for the InflateColumn::Serializer module.

my $unfreezer = ::Sereal>get_unfreezer( $column, $info, $args );
my $object = $unfreezer->( $string );

AUTHOR

Kent Fredric kentnl@cpan.org

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by Kent Fredric kentfredric@gmail.com.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

About

Sereal based Serialization for DBIx Class Columns

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages