ActiveRecord
Ruby on Rails: Serializing and DeSerializing Ruby objects
Serialization in Ruby comes very handy at times, it really helps in several cases especially when dealing with:
persisting Ruby objects onto a disk or to the database
transferring the Ruby objects over the network
session persistence
complex data structure storing in the database with ActiveRecord
and lot more …
The Object Serialization can be done in Ruby in two [...]


