Skip to content

Instantly share code, notes, and snippets.

@thedarkone
Created August 31, 2010 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thedarkone/559673 to your computer and use it in GitHub Desktop.
Save thedarkone/559673 to your computer and use it in GitHub Desktop.
h = {}
v = 1
threads = Array.new(my_cpu_count = 4) do
Thread.new do
2_000_000.times {|i| h[i] = v}
end
end
threads.map(&:join)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment