require 'lib/nfsstore'
STDOUT.sync=true
STDERR.sync=true
2.times do
  db=NFSStore.new 'db'
  p(db.snapshot || {})
  db.transaction{db['time']=Time.now}
end
