| KiokuDB documentation | view source | Contained in the KiokuDB distribution. |
KiokuDB::Backend::Serialize::YAML - YAML::XS based serialization of KiokuDB::Entry objects.
package MyBackend;
use Moose;
with qw(KiokuDB::Backend::Serialize::YAML);
KiokuDB::Backend::Serialize::Delegate is preferred to using this directly.
Calls YAML::XS::Dump
Calls YAML::XS::Load
Serializes the entry and prints to the file handle.
Reads until a YAML document boundry is reached, and then deserializes the current buffer.
| KiokuDB documentation | view source | Contained in the KiokuDB distribution. |