suppose there are 100 users on the site at the same time,
What's the difference between the following settings
Which setting is more sensible/practical ?
Setting 1
workers Integer(ENV['WEB_CONCURRENCY'] || 10)
threads_count = Integer(10)
Setting 2
workers Integer(ENV['WEB_CONCURRENCY'] || 20)
threads_count = Integer(5)
Setting 3
workers Integer(ENV['WEB_CONCURRENCY'] || 5)
threads_count = Integer(20)