logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DBI::Gofer::Serializer::Base - base class for Gofer serialization

Description

DBI::Gofer::Serializer::* classes implement a very minimal subset of the Data::Serializer API. Gofer serializers are expected to be very fast and are not required to deal with anything other than non- blessed references to arrays and hashes, and plain scalars. perl v5.40.0 2025-02-01 DBI::Gofer::Serializer::Base(3pm)

Name

DBI::Gofer::Serializer::Base - base class for Gofer serialization

Synopsis

$serializer = $serializer_class->new(); $string = $serializer->serialize( $data ); ($string, $deserializer_class) = $serializer->serialize( $data ); $data = $serializer->deserialize( $string );

See Also