Re: about serialization

2006-11-07 Thread Practical Perl
Thanks,zentara and others. 2006/11/7, zentara <[EMAIL PROTECTED]>: On Tue, 7 Nov 2006 17:58:47 +0800, [EMAIL PROTECTED] ("Practical Perl") wrote: >I saw a paper about DB_File, > > Three serialization wrappers are currently supported: Data::Dumper, > Storable, and FreezeThaw. Addit

Re: about serialization

2006-11-07 Thread victor tsang
http://en.wikipedia.org/wiki/Serialization Serialization here refer to the action of translating a complex data object into a simpler format. For example, translating an array [1,2,3] into a text string "1,2,3". Tor. Practical Perl wrote: I saw a paper about DB_File, Three serializ

RE: about serialization

2006-11-07 Thread Krishnakumar K P
storing of an object for later use is called serialization. -Original Message- From: Practical Perl [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 3:29 PM To: beginners perl Subject: about serialization I saw a paper about DB_File, Three serialization wrappers are

about serialization

2006-11-07 Thread Practical Perl
I saw a paper about DB_File, Three serialization wrappers are currently supported: Data::Dumper, Storable, and FreezeThaw. Additional serializers can be supported by writing a wrapper that implements the interface required by MLDBM::Serializer. See the supported wrappers