KiokuDB::TypeMap::Entry::Passthrough - A typemap entry of objects that will be serialized by the backend.
Contents
Attributes
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.
Copyright And License
This software is copyright (c) 2014 by Yuval Kogman, Infinity Interactive.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.34.0 2022-05-23 KiokuDB::TypeMa...ry::Passthrough(3pm)
Description
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.
Name
KiokuDB::TypeMap::Entry::Passthrough - A typemap entry of objects that will be serialized by the backend.
Synopsis
KiokuDB::TypeMap->new(
entires => {
'Value::Object' => KiokuDB::TypeMap::Entry::Naive->new,
},
);
Version
version 0.57
