It seems to me that file writing in Ruby MRI 1.8.7 is completely thread safe.
Example 1 - Flawless Results:
File.open("test.txt", "a") { |f|
threads = []
1_000_000.times do |n|
threads << Thread.new do
f << "#{n}content\n"
end
end
threads.each { |t| t.join }
}
Example 2 - Flawless Results (but slower):
threads = []
100_000.times do |n|
threads << Thread.new do
File.open("test2.txt", "a") { |f|
f << "#{n}content\n"
}
end
end
threads.each { |t| t.join }
So, I couldn't reconstruct a scenario where I face concurrency problems, can you?
I would appreciate if somebody could explain to me why I should still use Mutex here.
EDIT: here is another more complicated example which works perfectly fine and doesn't show concurrency problems:
def complicated(n)
n.to_s(36).to_a.pack("m").strip * 100
end
items = (1..100_000).to_a
threads = []
10_000.times do |thread|
threads << Thread.new do
while item = items.pop
sleep(rand(100) / 1000.0)
File.open("test3.txt", "a") { |f|
f << "#{item} --- #{complicated(item)}\n"
}
end
end
end
threads.each { |t| t.join }