KiokuDB::TypeMap::Entry::Passthrough - A typemap entry of objects that will be


KiokuDB documentation  | view source Contained in the KiokuDB distribution.

Index


NAME

Top

KiokuDB::TypeMap::Entry::Passthrough - A typemap entry of objects that will be serialized by the backend.

SYNOPSIS

Top

    KiokuDB::TypeMap->new(
        entires => {
            'Value::Object' => KiokuDB::TypeMap::Entry::Naive->new,
        },
    );

DESCRIPTION

Top

This typemap entry delegates the handling of certain objects to the backend.

A prime example is DateTime being handled by KiokuDB::Backend::Serialize::Storable. DateTime has efficient Storable hooks, and does not refer to any domain objects, so it is safe to assume that it can just be passed through for serialization.

ATTRIBUTES

Top

intrinsic

If true the object will be just left in place.

If false, the object will get its own ID and entry, and the object will be in the data field of that entry.


KiokuDB documentation  | view source Contained in the KiokuDB distribution.