mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
263 B
Ruby
20 lines
263 B
Ruby
|
require 'pstore'
|
||
|
|
||
|
db = PStore.new("/tmp/foo")
|
||
|
db.transaction do
|
||
|
p db.roots
|
||
|
ary = db["root"] = [1,2,3,4]
|
||
|
ary[1] = [1,1.5]
|
||
|
end
|
||
|
|
||
|
1000.times do
|
||
|
db.transaction do
|
||
|
db["root"][0] += 1
|
||
|
p db["root"][0]
|
||
|
end
|
||
|
end
|
||
|
|
||
|
db.transaction(true) do
|
||
|
p db["root"]
|
||
|
end
|