Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dbix::class::serialize::storable(3pm) [debian man page]

DBIx::Class::Serialize::Storable(3pm)			User Contributed Perl Documentation		     DBIx::Class::Serialize::Storable(3pm)

NAME
DBIx::Class::Serialize::Storable - hooks for Storable nfreeze/thaw DEPRECATION NOTE
This component is now DEPRECATED. It has not been providing any useful functionality for quite a while, and in fact destroys prefetched results in its current implementation. Do not use! SYNOPSIS
# in a table class definition __PACKAGE__->load_components(qw/Serialize::Storable/); # meanwhile, in a nearby piece of code my $cd = $schema->resultset('CD')->find(12); # if the cache uses Storable, this will work automatically $cache->set($cd->ID, $cd); DESCRIPTION
This component adds hooks for Storable so that row objects can be serialized. It assumes that your row object class ("result_class") is the same as your table class, which is the normal situation. HOOKS
The following hooks are defined for Storable - see the documentation for "Hooks" in Storable for detailed information on these hooks. STORABLE_freeze The serializing hook, called on the object during serialization. It can be inherited, or defined in the class itself, like any other method. STORABLE_thaw The deserializing hook called on the object during deserialization. AUTHORS
David Kamholz <dkamholz@cpan.org> LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.14.2 2011-05-10 DBIx::Class::Serialize::Storable(3pm)

Check Out this Related Man Page

Class::Std::Fast::Storable(3pm) 			User Contributed Perl Documentation			   Class::Std::Fast::Storable(3pm)

NAME
Class::Std::Fast::Storable - Fast Storable InsideOut objects VERSION
This document describes Class::Std::Fast::Storable 0.0.8 SYNOPSIS
package MyClass; use Class::Std::Fast::Storable; 1; package main; use Storable qw(freeze thaw); my $thawn = freeze(thaw(MyClass->new())); DESCRIPTION
Class::Std::Fast::Storable does the same as Class::Std::Storable does for Class::Std. The API is the same as Class::Std::Storable's, with few exceptions. SUBROUTINES
/METHODS STORABLE_freeze see method Class::Std::Storable::STORABLE_freeze STORABLE_thaw see method Class::Std::Storable::STORABLE_thaw DIAGNOSTICS
see Class::Std and see Class::Std::Storable CONFIGURATION AND ENVIRONMENT
DEPENDENCIES
o version o Class::Std o Carp INCOMPATIBILITIES
STORABLE_freeze_pre, STORABLE_freeze_post, STORABLE_thaw_pre and STORABLE_thaw_post must not be implemented as AUTOMETHOD. see Class::Std and Class::Std::Storable BUGS AND LIMITATIONS
see Class::Std and Class::Std::Storable RCS INFORMATIONS
Last changed by $Author: ac0v $ Id $Id: Storable.pm 469 2008-05-26 11:26:35Z ac0v $ Revision $Revision: 469 $ Date $Date: 2008-05-26 13:26:35 +0200 (Mon, 26 May 2008) $ HeadURL $HeadURL: file:///var/svn/repos/Hyper/Class-Std-Fast/branches/0.0.8/lib/Class/Std/Fast/Storable.pm $ AUTHOR
Andreas 'ac0v' Specht "<ACID@cpan.org>" LICENSE AND COPYRIGHT
Copyright (c) 2007, Andreas Specht "<ACID@cpan.org>". All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2008-05-26 Class::Std::Fast::Storable(3pm)
Man Page