The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

KiokuDB::Backend::Serialize - Serialization role for backends

SYNOPSIS

    package KiokuDB::Backend::Serialize::Foo;
    use Moose::Role;

    use Foo;

    use namespace::clean -except => 'meta';

    with qw(KiokuDB::Backend::Serialize);

    sub serialize {
        my ( $self, $entry ) = @_;

        Foo::serialize($entry)
    }

    sub deserialize {
        my ( $self, $blob ) = @_;

        Foo::deserialize($blob);
    }

DESCRIPTION

This role provides provides a consistent way to use serialization modules to handle backend serialization.

See KiokuDB::Backend::Serialize::Storable and KiokuDB::Backend::Serialize::JSPON for examples.

REQUIRED METHODS

serializate $entry

Takes a KiokuDB::Entry as an argument. Should return a value suitable for storage by the backend.

deserialize $blob

Takes whatever serializate returned and should inflate and return a KiokuDB::Entry.