This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.
What is Marshalling # Marshalling is a serialization process when you convert an object to a binary string. Ruby has a standard class Marshal that does all the job for serialization and deserialization. To serialize an object, use Marshal.dump , to deserialize - Marshal.load or Marshal.restore . copy marshalled = Marshal . dump( [ 1 , 2 , 'string' , Object . new ] ) # =>…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.