Created
December 19, 2024 03:27
-
-
Save SamSaffron/3f9a3b94718425359d74eab9d9c8506a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'concurrent' | |
puts "Thread Count: #{Thread.list.count}" | |
pool = Concurrent::CachedThreadPool.new( min_threads: 0, max_threads: 5, idletime: 1 ) | |
puts "Thread Count: #{Thread.list.count}" | |
# we have 1 thread for now | |
5.times do | |
pool.post do | |
puts "Hello from thread #{Thread.current.object_id}" | |
end | |
end | |
# we now have 5 | |
sleep 2 | |
puts "Thread Count: #{Thread.list.count}" | |
# we still have 5 | |
pool.post do | |
puts "Hello from thread #{Thread.current.object_id}" | |
end | |
sleep 1 | |
puts "Thread Count: #{Thread.list.count}" | |
# we just issued a prune as a side effect so we have 2 | |
pool.prune_pool | |
sleep 2 | |
# we need to sleep cause prune_pool is async | |
puts "Thread Count: #{Thread.list.count}" | |
# we now have 1 thread |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment