
KiokuDB::Backend::TypeMap::Default - A role for backends with a default typemap

package MyBackend;
with qw(
...
KiokuDB::Backend::TypeMap::Default
);
sub _build_default_typemap {
...
}

This role requires that you implement a single method, _build_default_typemap that will return a KiokuDB::TypeMap instance.
See KiokuDB::TypeMap::Default for details.