require 'benchmark'

class VanillaDataset
end

ds = Marshal.load(File.open('./nested_ds.txt', 'r'))

n = 100

Benchmark.bm do |x|
  x.report("Marshal Dump") {for i in 1..n; Marshal.dump(ds); end}
end
