From: hurcan solter Date: 2008-05-20T14:50:04+09:00 Subject: how to serialize hash to a file? i have an xml file that goes like; at some point i need the look up the data type for different attributes. I can get the data type using a Xpath query in the form using REXML node = $fom_file.elements["//attribute [@name = '#{attribute_name}']"] it works okay, the thing is ,it takes ages (which is about ten seconds) so I have a mind to cache the attribute-datatype pairs in a hash for faster lookup. So can you guys tell me a simple and elegant way to do serialize deserialize that hash to a file? TIA Hurcan Solter