I'm using DRb with quite a few objects marked as DRbUndumped. Some of these objects also need to persist to disk, which I was using Marshal to do before I introduced the DRb chunk and it worked just fine. Now, of course, I get an error when I try to Marshal anything, so I was using YAML. Which works great but is slow. The files do not need to be human readable, so is there any way to either uninclude DRbUndumped or allow Marshall to temporarily bypass DRbUndumped so I can have the speed of Marshal?